Button post back.........

  • Thread starter Thread starter John
  • Start date Start date
J

John

I have attached the java script code to Button web control as follows.

myButton.Attributes.Add("OnClick", "OpenWindow()")

I have written java script to open the window in the OpenWindow function.

When I click on the myButon, new window will open and at the sametime
button is posting back the form(?) and the main window comes up and the
opened window goes behind. So that my purpose of displaying the data(window)
is lost. how to make sure that the opened window will remain on top in the
clicked event of button.
Thanks
john
 
Hi John,

Here is your answer...

In the popup window put the fallowing in the body tag :

onblur="window.focus()"


You'll see the result is better then you think. =)

Gönen.
 

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