Refresh parent page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a pair of parent/child pages and use the following from the child page
to refresh the parent page. But sometimes (most of the time) the parent page
cannot get refreshed.

The child page has a big table that has about 26 rows and two columns. If I
delete the table, I can refresh the parent table, but I need this HTML table.
Please advise. Thanks.

Response.Write("<script language='javascript' type='text/javascript'> {
self.close(); }</script>");
Response.Write("<script language='javascript' type='text/javascript'> {
window.opener.location = 'Default.aspx?Reload=" + IDText.Text + "';
}</script>");
 
Back
Top