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 D

Re: offline question

2003-08-14 Thread kulandaivadivel Duraisamy
helps regards Poornima -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: Subjec

Re: convert \n to in jsp print statement

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

Re: "\n" problem in jsp

2002-10-23 Thread Kulandaivadivel Duraisamy
2002 10:07:02 +0530 Kulandaivadivel Duraisamy <[EMAIL PROTECTED]> wrote: > Hi All, > > I have one String variable in jsp. > value of that variable contains "\n". > > When I tried to give alert message of that varible's value(using java script),i'm

"\n" problem in jsp

2002-10-23 Thread Kulandaivadivel Duraisamy
Hi All, I have one String variable in jsp. value of that variable contains "\n". When I tried to give alert message of that varible's value(using java script),i'm getting problem for eg my jsp is <% String strMes="test\ntest"; %> <% out.println("alert(\""+strMes +"\");"); %> once it is