> From: Leticia Golubov [mailto:[EMAIL PROTECTED] > I have a jsp page which I need to retrieve some values at > onLoad time, i.e.: > <body onload="javascript:getValues();"> > all getValues() does is submit the form on this page which > sets a bunch of bean values for me to retrieve further down this page...
Are you letting people visit the JSP directly? If you make them go through the Action first, then you can set up the values in advance, and they will be there in the session (or request) when you get to the JSP. But I didn't really understand what you're trying to do. Is it like a list of catalog items, and clicking on one of them opens a smaller window with details? -- Wendy Smoak Application Systems Analyst, Sr. ASU IA Information Resources Management --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

