I am having a hard time figuring out why the request part of my URL is not showing up correctly in the Page_Load method of Default.aspx.cs in my application.
If my URL is something like this:
http://localhost:3161/SignOn?ReturnUrl=%2fReturnMeHere
When I debug, I'd expect there to be query string parameters in my Request object:
public void Page_Load(object sender, System.EventArgs e)
{
string originalPath = Request.Path;
}
However, none show up. I'm guessing these are being stripped out somewhere but I'm not sure what else would be doing this in the pipeline.
*Edit, a screenshot from a local URL debugging "http://localhost:3161/SignOn?ReturnUrl=/ThisIsDisappearing"

Page_Loadhardly correlates well to tagmvc:)