Re: offline question

2003-08-14 Thread kulandaivadivel Duraisamy
-Original Message- From: A mailing list about Java Server Pages specification and reference on behalf of kulandaivadivel Duraisamy Sent: Tue 8/12/2003 4:25 PM To: [EMAIL PROTECTED] Cc: Subject: offline question

offline question

2003-08-14 Thread kulandaivadivel Duraisamy
Hi All, This is offline question.. I have excel files stored in the webserver. when the user download these files, it directly opens in the browser. But i want to ask for a prompt like open or save.. how to do? do i need to do some setting in IE or in webserver. Thanks in advance. Vadivel

Re: convert \n to p in jsp print statement

2002-10-28 Thread Kulandaivadivel Duraisamy
Hi Use the following method to replace all \n to P public String replaceAllValues(String stringValue, String oldString, String replaceString) { String temp1; String temp2; for(; stringValue.indexOf(oldString) -1; stringValue = temp1 + replaceString + temp2)