Re: thanks JAYSON Re: **** new window problem

2000-11-25 Thread JSP Insider
The problem might be the code. Here try this. var newWindow = window.open(); newWindow.document.write("
"); It does what you want and it works on Netscape and IE just fine. Perhpas the problem was ju

thanks Re: thanks JAYSON Re: **** new window problem

2000-11-25 Thread ramalingeswara sarma
thanks i will try it - Original Message - From: JSP Insider <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 25, 2000 6:48 PM Subject: Re: thanks JAYSON Re: new window problem > The problem might be the code. > > Here try this. > > > > > var newWindow = windo

how do I get Parameters from form to the same Jsp

2000-11-25 Thread Martin Nwalal
Hi, How Can I pass parameters from form link to jsp where form and jsp are in the same file . thanks for help Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMA

Thanx to --Craig McClanahan RE: Can a JSP extend a Servlet

2000-11-25 Thread Girish B Mohite
Hello sir i am really very much thankful to you I have done the same as you have told me It was really great.I was trying a lot to extend a servlet from a jsp.But can we do this.i think we can do this.But the Problem was my servlet used to execute fine but after that the control was not comming t

test

2000-11-25 Thread Ching sen, Jackson
Hi, All I am trying to output an image to the browser directly using OutputStream. This worked fine in a servlet with an ServletOutputStream. However, when I tried to do the same thing in JSP, I cann't find a way to get the OutputStream. The default (predefined) out is a PrintWriter , which

Re: test

2000-11-25 Thread Girish B Mohite
Hi You can get an instance of output stream by coding response.getOutputStream(); Regards Girish >= Original Message From A mailing list about Java Server Pages specification and reference <[EMAIL PROTECTED]> = >Hi, All > >I am trying to output an image to the browser directly using O

how do I get Parameters from form to the same Jsp

2000-11-25 Thread Martin Nwalal
Hi, How Can I pass parameters from form link to jsp where form and jsp are in the same file . thanks for help Martin === To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST". For digest: mailto [EMA

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread Girish B Mohite
Hi Martin This is Girish here Can you restate ur problem ,its not very clear to me Whenever you submit the form in a jsp ,the jsp reloads itself so it can get the parameters in that form.If at all you want tos et some parameters ,set them in javascript Hope this solves ur proble Regards Girish

File upload servlet

2000-11-25 Thread G.Nagarajan
Hi, I am using the following servlet for uploading files. http://www.servlets.com/resources/com.oreilly.servlet/index.html The code works fine when the file size is lesser than the max file size. But when the uploaded file size is more, the browser just shows the server could not be found messag

Getting the file size of a file in JavaScript

2000-11-25 Thread Stefán F. Stefánsson
> Is there any possible way of getting the size of a file on the browser > computer through JavaScript? > > Kind regards, > Stefan Freyr. > > > Stefan Freyr Stefansson > Software Developer > deCODE Genetics, Inc. > > Phone: (+354) 570 2854 > GSM:

InternetExplorer Content Type Problems

2000-11-25 Thread Stefán F. Stefánsson
Hello. I'm trying to use com.oreilly.servlet.multipart.MultipartParser class to work with Microsoft Internet Explorer. The content type always return null no matter what I do. I've tried to add the tag to the HTML documents header but nothing! The two attempts to get the content type used by

Re: test

2000-11-25 Thread Craig R. McClanahan
Girish B Mohite wrote: > Hi > > You can get an instance of output stream by coding > > response.getOutputStream(); > Except that this is not legal in a JSP page. See the JSP 1.1 spec , Section 2.5.4 (p. 41), end of the first bullet point: "JS

Re: InternetExplorer Content Type Problems

2000-11-25 Thread Stefán F. Stefánsson
oh, never mind! I figured out what was wrong. Strangely enough you have to explicitly specify the form method (POST) for this to work... Just in case anybody else is wondering. Regards, Stefan. -Original Message- From: Stefán F. Stefánsson Sent: 25. nóvember 2000 18:07 To: [EMAIL PROT

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread suxuchun
Just use or That will be ok - Original Message - From: "Martin Nwalal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 25, 2000 8:45 PM Subject: how do I get Parameters from form to the same Jsp > Hi, > > How Can I pass parameters from form link to jsp where f

Re: how do I get Parameters from form to the same Jsp

2000-11-25 Thread suxuchun
Just use - Original Message - From: "Martin Nwalal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, November 25, 2000 8:45 PM Subject: how do I get Parameters from form to the same Jsp > Hi, > > How Can I pass parameters from form link to jsp where form and jsp are > in

Re: Passing non-ascii code in the href?

2000-11-25 Thread Prabhu bharat
to pass Nosan value in link use server objects urlencode method for e.g.. you can try following solution ASP code >click here to decode its value in Java you can use static method decode of URLDecoder class which accept string and returns string. this class is available in J2SE net package. -