I have a "thank you" page that is shared by two different forms pages. What I want to do is depending on what the original page was, have the Response.Redirect
populate the previous page's url after a period of 4 seconds.
I'm not sure how to go about grabbing the previous url to put into the redirect, possibly through reflection? I've gotten this far:
protected void Page_Load(object sender, EventArgs e)
{
System.Threading.Thread.Sleep(4000);
Response.Redirect("some sort of dynamic code");
}