Is there a way in C# to get a value that is normally passed in the url string into the variable while debugging??
Normally this is the string...
http://server/foldertest/Page.aspx?sel=ss
But when using "start debugging" I have the url without the form variable that is passed from another server but need to get the variable into the debugging application in order to test.
http://server/foldertest/Page.aspx
It looks to be part of the request.form but I'm not sure where or how to get the "ss" into the collection while in debug mode before it bombs. Not where in the code but where in the collection and how.