Can someone tell me how I can reload a page in my code? My problem is I've updated the information in my datagrid and then I'm requerying the database and rebinding it to my datagrid but I don't see the results until I manually refresh my page.<BR><BR>Thanks in advance for your help,<BR>RickiHere is how I do it.<BR><BR>Sub Page_Reload()<BR> Dim PageURL as String <BR>' gets the path of the current page so it can redirect to itself<BR> PageURL = Request.ServerVariables("URL") <BR> <BR>' keeps any variables stored in QueryString collection<BR>if Len( Request.ServerVariables("QUERY_STRING")) > then <BR>PageURL &= "?" & Request.ServerVariables("QUERY_STRING")<BR>end if<BR>' redirects the page to itself to force a reload <BR> Response.Redirect (PageURL) <BR>End Sub<BR><BR>Aaron