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
 
Thanks. It worked.

Martin Dechev said:
Hi, Nikhil,

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

<base target="_self">

Greetings
Martin
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top