I have a web application built around a frameset. The main page (with the frameset layout) is index.aspx. After the user logs in, if there are any alerts it redirects the main content frame to an alerts page with a confirmation button on it. When they click this button I want the index.aspx to be reloaded. If I use the response.redirect(“index.aspx”) on button click it reloads the main content frame with another frameset.
The server-side button click sets a flag within the database so that the user doesnt see the alert again.
My question is how do I force a complete reload of the entire frameset?
Get rid of them if you can, but until then you will have to do it with
JavaScript:*sorry about the c# example, don’t care for vb.net
How to do a Response.Redirect to another frame