Reputation:
I want to know whether or not the client got to the page he is now (for example "sign_up.aspx") using Response.Redirect or not. is it possible?
Upvotes: 0
Views: 108
Reputation: 26981
You could just add a URL parameter in the redirect, then parse that on the client using JavaScript.
e.g sign_up.aspx?source=from
Upvotes: 3