My ASP.NET application has stopped working after I migrated it to another server.
The problem is that I cannot send more than one value via the query string.
The URL I'm trying looks like this:
ThisIsSecondPage.aspx?Mode=Edit&ID=0001
I can capture the value of Mode in ThisIsSecondPage.aspx, but ID is blank.
I also tried to change ID to something line A0001, but it did not work.
I also tried:
ThisIsSecondPage.aspx?Mode=Edit<and>ID=0001
Can anyone help me please?