472,135 Members | 1,365 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,135 software developers and data experts.

ASP.NET Javascript Modal Popup won't fire Page Load on second go

Hello All

Hope you can help

Been pulling my hair out about a popup problem in ASP.NET. One of the
forms i wrote requires the user to select a product from a list in a
popup web form. the popup has a DataGrid on it and the page.load
function DataBinds as you'd expect.

I have Code-Behind in C# to emit a call to a JavaScript function which
uses showModalDialog() to show the popup. The product list is selected
from the parent page and inserted into a Session[] variable. This
Session[] variable is picked up by the popup and binds to the datagrid
successfully. A little more JavaScript is emitted in the popup to get
an array of data back to the parent, and also call window.close().

However, when the user has to select a second product, the popup
doesn't fire it's Page.load method and the DataGrid remains with it's
old data. The data is definitely in the Session[] store as i expected
it.

How can i get the popup to close properly so that the page.load event
fires every time?

hope it makes sense

Nov 19 '05 #1
15 9966
> How can i get the popup to close properly so that the page.load event
fires every time?


Not sure but I think the window.open() call has an attribute to name the
opening window (for ref) and if so try generating a random name (time
perhaps) as the name to ensure it's a "new" window...

Just a quick thought

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #2
if i've understood this properly, you are trying to get the Parent page to
reload once you have finished with the popup window.

If this is the case, as well as closing the popup, try redirect the Parent
page to itself

javascript: window.opener.parent.location='MyUrl.aspx';

HTH

"H00ner" <ti*@slashwoot.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello All

Hope you can help

Been pulling my hair out about a popup problem in ASP.NET. One of the
forms i wrote requires the user to select a product from a list in a
popup web form. the popup has a DataGrid on it and the page.load
function DataBinds as you'd expect.

I have Code-Behind in C# to emit a call to a JavaScript function which
uses showModalDialog() to show the popup. The product list is selected
from the parent page and inserted into a Session[] variable. This
Session[] variable is picked up by the popup and binds to the datagrid
successfully. A little more JavaScript is emitted in the popup to get
an array of data back to the parent, and also call window.close().

However, when the user has to select a second product, the popup
doesn't fire it's Page.load method and the DataGrid remains with it's
old data. The data is definitely in the Session[] store as i expected
it.

How can i get the popup to close properly so that the page.load event
fires every time?

hope it makes sense

Nov 19 '05 #3
and just found on google, you can also do:

javascript: window.opener.location.reload()

"H00ner" <ti*@slashwoot.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
Hello All

Hope you can help

Been pulling my hair out about a popup problem in ASP.NET. One of the
forms i wrote requires the user to select a product from a list in a
popup web form. the popup has a DataGrid on it and the page.load
function DataBinds as you'd expect.

I have Code-Behind in C# to emit a call to a JavaScript function which
uses showModalDialog() to show the popup. The product list is selected
from the parent page and inserted into a Session[] variable. This
Session[] variable is picked up by the popup and binds to the datagrid
successfully. A little more JavaScript is emitted in the popup to get
an array of data back to the parent, and also call window.close().

However, when the user has to select a second product, the popup
doesn't fire it's Page.load method and the DataGrid remains with it's
old data. The data is definitely in the Session[] store as i expected
it.

How can i get the popup to close properly so that the page.load event
fires every time?

hope it makes sense

Nov 19 '05 #4
I saw that option of window.open() but, unfortunately, I'm using
window.showModalDialog() which returns a variant from the modal box and
not a reference to the page.

thanks for the reply though Curt :¬)

Nov 19 '05 #5
Grant Merwitz wrote:
if i've understood this properly, you are trying to get the Parent page to
reload once you have finished with the popup window.


Actually I think he's indicating that the second time he tries to call
the window.open() it doesnt.... because he suspects it isnt closing
properly??

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #6
thanks Grant, but it's not the parent that needs to be reloaded.

The process works like this :

Parent window selects data to be displayed in popup and stores in
session
Parent emits javascript to call showModalDialog() and popup loads
Popup gets data from session and binds to datagrid
User selects data they want and popup returns a JavaScript array
Parent uses javascript array to fill text boxes

This all works okay on the first run through, but the popup will not
fire it's Server-Side Page.Load method when it's called a Second time
and the new data selected by the parent isn't bound to the DataGrid.
It seems that the popup page is still 'loaded' and the JavaScript
window.close() doesn't unload it entirely

Nov 19 '05 #7
H00ner wrote:
I saw that option of window.open() but, unfortunately, I'm using
window.showModalDialog() which returns a variant from the modal box and
not a reference to the page.

thanks for the reply though Curt :¬)


I'm not really concerned with the return from the call, more of the
actual call. I was just wondering if the browser was seeing the same
call twice and not calling it.. was thinking that an appended
QueryString random value or new name may "fool" the browser into
thinking its a different window.

Personally I've avoided the modal windows due to the NASTY problems I
always run into. A well placed/positioned window.open() call is usually
sufficient. It is definitely an area that WWW has a deficiency in.
--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #8
You could be on to something there Curt. I was trying to force the
users to give me the data using a modal dialog box. However, i could
use a window.open() instead really as this does give a reference to the
window i've opened which i should be able to nullify when i'm done

thanks for your feedback (and you, Grant) on my issue. I'll update
this thread with my findings using window.open() instead of
window.showModalDialog()

You're also right about the deficiancy thing as well. i'm hoping
there's something to help us more when ASP.NET 2.0 emerges :¬)

cheers

Tim

Nov 19 '05 #9
> You're also right about the deficiancy thing as well. i'm hoping
there's something to help us more when ASP.NET 2.0 emerges :¬)


Sadly its not a programming limitation that much.. mostly its a Browser
thing. WWW wasn't really designed around the idea of multiple,
interconnected, windows. It was supposed to be a single call, processed
and returned then dropped. Everything beyond that is really just
"project drift"......

-
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #10
i've had a think about the window.open() thing as well and my project
relies on the returned array from showModalDialog() so it can collect
the data into the desired boxes.

do you know if there's any way of calling a page's Dispose() method
from another page? Maybe i could ensure the page is unloaded before I
emit the JavaScript to pop the box up

i'll have another play tomorrow and see what happens

thanks for all your suggestions :¬)

Tim

Nov 19 '05 #11
"H00ner" wrote:
but the popup will not
fire it's Server-Side Page.Load method when it's called a Second time
and the new data selected by the parent isn't bound to the DataGrid.
It seems that the popup page is still 'loaded' and the JavaScript
window.close() doesn't unload it entirely


Page loads the previous data, when clicked second time ?

The issue should be BROWSER CACHING the data.. use this code in popup page
page_load to expire the cache..
private void Page_Load(object sender, System.EventArgs e)
{
ExpirePageCache();
//.......rest of the page_load logic....................
}
/// <summary>
/// This function prevent the page being retrieved from broswer cache
/// </summary>
private void ExpirePageCache()
{
Response.Cache.SetCacheability(HttpCacheability.No Cache);
Response.Cache.SetExpires(DateTime.Now-new TimeSpan(1,0,0));
Response.Cache.SetLastModified(DateTime.Now);
Response.Cache.SetAllowResponseInBrowserHistory(fa lse);
}

pls let us know if it worked.. Thanks

Sreejith

Nov 19 '05 #12
an additional note, this happense when you do not have any query parameter
passed (or pass same query param value in susequent calls) to the popup ..

Adding a dummy query parameter param with some random value passed as
parameter every time also could solve the issue..

"Sreejith Ram" wrote:
"H00ner" wrote:
> but the popup will not
fire it's Server-Side Page.Load method when it's called a Second time
and the new data selected by the parent isn't bound to the DataGrid.
It seems that the popup page is still 'loaded' and the JavaScript
window.close() doesn't unload it entirely


Page loads the previous data, when clicked second time ?

The issue should be BROWSER CACHING the data.. use this code in popup page
page_load to expire the cache..
private void Page_Load(object sender, System.EventArgs e)
{
ExpirePageCache();
//.......rest of the page_load logic....................
}
/// <summary>
/// This function prevent the page being retrieved from broswer cache
/// </summary>
private void ExpirePageCache()
{
Response.Cache.SetCacheability(HttpCacheability.No Cache);
Response.Cache.SetExpires(DateTime.Now-new TimeSpan(1,0,0));
Response.Cache.SetLastModified(DateTime.Now);
Response.Cache.SetAllowResponseInBrowserHistory(fa lse);
}

pls let us know if it worked.. Thanks

Sreejith

Nov 19 '05 #13
H00ner wrote:
i've had a think about the window.open() thing as well and my project
relies on the returned array from showModalDialog() so it can collect
the data into the desired boxes.

do you know if there's any way of calling a page's Dispose() method
from another page? Maybe i could ensure the page is unloaded before I
emit the JavaScript to pop the box up

i'll have another play tomorrow and see what happens

thanks for all your suggestions :¬)

Tim


save the data, call the calling-pages Refresh() when complete

--
Curt Christianson
site: http://www.darkfalz.com
blog: http://blog.darkfalz.com
Nov 19 '05 #14
Sreejith

These both worked.

i added a javascript method to return a random generated querystring
which i then appended to my URL in showModalDialog() and this caused
the page to load every time

Also, i tried the Response.Cache() method you gave me and that works
also. i prefer this method to the random querystring as the code is
all server-side and easy to locate

thanks your help on this, problem solved :¬)

Tim

Nov 19 '05 #15
it's a bit of a weird page in most respects. the page starts by asking
the user to select one of our clients and then goes off to cache the
client's product list so that the popup loads a bit quicker. this
selection also makes visible a whole swath of panels and tables with
fields in them.

Sreejith had the solution up above and it was due to browser caching.
invalidating the cache or tricking the browser into thinking it's a
different link sorted it out :¬)

I'd like to thank you all for your time on my issue and replying to me.
it's really helped me out

cheers

Tim

Nov 19 '05 #16

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

7 posts views Thread by Mardy | last post: by
4 posts views Thread by fran_j_diaz | last post: by
3 posts views Thread by Mike Hofer | last post: by
5 posts views Thread by =?Utf-8?B?SmFtZXMgUGFnZQ==?= | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.