Problem with client rendering after "page". calls
I tried, "Previous page", "Previous page .IsCrossPagePostBack" "Page .previousPage", page.title
This causes the client to stop displaying 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 call Causes client rendering to freeze
response.write("But i cant see this");
System.Windows.Forms.MessageBox.Show("However i can see this,proving that the server is still running the code");
}
Anyone, any ideas?
0
jukus
source
to share