I have the following URL:
http://testexample.htm#tab=matchup&schoolid=74c1621c-e0cf-4821-b5e1-3c8170c8125a
In my code, I want to check to see if "tab" equals "matchup" in the URL
if (Request.QueryString["tab"] == "matchup")
{
VideoPlayerUserControl.Settings.AutoStart = On;
}
This code doesn't seem to work.. is that because "tab" has a preceding hash (#)?