ASP.Net 2.0 and Force Post Back ?

  • Thread starter Thread starter Luqman
  • Start date Start date
L

Luqman

I have created a page1.aspx with a button, when I click on button,
page2.aspx is opened on top of page1.aspx as a New Popup Window using
Javascript Window.Open.

Now, when I select the data on page2.aspx and close it with
Javascript.window.close(), the page1.aspx does not postback ?

Any idea how can I force the page1.aspx to PostBack.

Best Regards,

Luqman
 
Luqman said:
I have created a page1.aspx with a button, when I click on button,
page2.aspx is opened on top of page1.aspx as a New Popup Window using
Javascript Window.Open.

Now, when I select the data on page2.aspx and close it with
Javascript.window.close(), the page1.aspx does not postback ?

Any idea how can I force the page1.aspx to PostBack.

Best Regards,

Luqman
Have look at ClientScript.GetPostBackEventReference(). You can use this
to postback clientside
 
Back
Top