urgent: problem with button control

  • Thread starter Thread starter Nikhil Patel
  • Start date Start date
N

Nikhil Patel

Hi all,
I have an aspx page from which I dosplay a web form in a new windo using
window.showModalDialog function of Javascript. When I click on a Submit
button of the web form it opens a new window and displays the form again.
How can I prevent that? Thanks...
-Nikhil
 
Hi, Nikhil,

Add the following to the <head> section of the html:

<base target="_self">

Greetings
Martin
 
Back
Top