In my application I submit some values through a form, which inserts these values into my database. I want to see the updated database 'almost' as soon as I have clicked submit, without the user having to click on anything.
I might be wrong here, but I thought if I have a narrow window on the left handside of my screen with the form, then when I press submit, this can send the information into the database and at the same time open a new window on the right handside of the screen, and display the database content.
How do I open a new 'popup' window from within the private void trayAdminSubmit_Button_Click(object sender, System.EventArgs e)
I tried
Server.Transfer("javascript
opWin('ReceiveTray.aspx',400,450)");
BUt this obviously does not work.
Any suggestions?
Marika
I might be wrong here, but I thought if I have a narrow window on the left handside of my screen with the form, then when I press submit, this can send the information into the database and at the same time open a new window on the right handside of the screen, and display the database content.
How do I open a new 'popup' window from within the private void trayAdminSubmit_Button_Click(object sender, System.EventArgs e)
I tried
Server.Transfer("javascript
BUt this obviously does not work.
Any suggestions?
Marika