Why not simply remove the time delay? I'm sure I'm missing something here!
Set the initial src of your right frame to a static page that does two things:
1) Display a "Please wait" message.
2) Submit a request to the datagrid page (use a form with action tag set to the .aspx page).
The Please Wait message will display until the datagrid page returns.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37
Another technique I've used in the past is to include a script that fires "onsubmit". You have to add an onsubmit handler to your form.
That script makes a div or image or window, whatever, visible. That newly visible element will be your "please wait" message. Then, return "true" so that the form submits.
tgreer
Made Her Cry
2,118 posts since Dec 2004
Reputation Points: 227
Solved Threads: 37