Any 'Page.PreviousPage' call causes the client page render to stop,
i know its only the client as i can pull out the results of methods even after the 'page.PreviousPage' line of execution from the server(using mbox[running it local])
-using 'Server.Transfer' on a button
- with the target's PostBackUrl in the button setts
-and 'Previou...
I have tried, 'PreviousPage', 'PreviousPage.IsCrossPagePostBack' 'Page.previousPage', page.title
It causes the client to stop rendering the page after this line.
simple example
protected void Page_Load(object sender, EventArgs e)
{
response.write("I can see this");
string test = PreviousPage.IsCrossPagePostBack.toString(); //Any page ...
I have a classic asp application. I want to post a contest form from that page to an Asp.Net form. The reason is that I want to use a lot of logic i have built into an Asp.Net page for validation before entering into the database and I don't know asp very well. Not to mention asp.Net being more secure.
What's the best way to accomplish ...