legendgod Posted October 14, 2004 Posted October 14, 2004 Hello Xtremers, I am now working out a ASP.NET web pages. The 1st page will pop-up a small operation window, let the users type in something, and return to the opener window after a button clicked. In order in pass some parameters, I am using button.CommandName & button.Id to contain some value. However, I find there are not enough of parameter holders. Could you please give me some idea, except Session, cookie, application. Any parameter holders for this situation? Thank you very much. Quote http://blog.legendgod.com
eramgarden Posted October 14, 2004 Posted October 14, 2004 can u do response.response?value=whatever.. i think i've read that another way is to save in sql server but not sure Quote
Mothra Posted October 15, 2004 Posted October 15, 2004 You could pass them back to the opening page using javascript. If you're passing the value(s) to controls on the opening page, it would look something like this: window.opener.document.getElementById('controlName').value = 'yourValue'; Without using cookies, session or application variables, there's not many other ways to do it. Quote Being smarter than you look is always better than looking smarter than you are.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.