Re: Pass parameter to javascript function

2005-06-09 Thread Avjit Singh Jhajj
You can pass the parameters to the javascript as shown underneath by enclosing the <%=%>  in single quotes... Avjit On Thu, 09 Jun 2005 [EMAIL PROTECTED] wrote : > >How can I pass parameter in to a javascript function from a >tag?? > > >eg: > > /> >... >... > > > >Amitava Basak >ASE

Acrobat 7.0 opens 2 windows for opening PDF as inline document.

2005-06-21 Thread Avjit Singh Jhajj
Hi, Presently I am having the following piece of code for opening the PDF in the new browser window. OutputStream out = response.getOutputStream(); String filename = "AutoGlaserOutput.pdf"; response.setContentType("application/pdf");

Re: RE: Question re html:select on the client

2005-07-07 Thread Avjit Singh Jhajj
You can use the following code to dynamically generate the action where the submit is to happen. function linkEditClick() { document.formName.action="/editAction?id=" + document.formName.comboName.value; document.formName.submit(); }   function linkAddClick() { document.formName.action="/ad