Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
cshah1
Constraint Violating Yak Guru
347 Posts |
Posted - 2005-02-28 : 11:06:35
|
Are URL QueryString parameters are case sensitive? (I.e. index.aspx?URLPARAM=parameter1index.aspX?urlparam=parameter2(URLPARAM and urlparam referes to same paramter or different) |
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2005-02-28 : 11:27:49
|
they're the same.Go with the flow & have fun! Else fight the flow |
 |
|
cshah1
Constraint Violating Yak Guru
347 Posts |
Posted - 2005-02-28 : 12:15:50
|
OK, my mistake parameter value "PARAMETER1" is case sensitive (may be comparision is some how case sensitive) IF Request.QueryString("UrlParam") = "PARAMETER1" Then Response.Write("parameter value is in CAPS")ELSE Response.Write("No caps")End IFindex.asp?UrlParam=PARAMETER1and index.asp?UrlParam=Parameter1 |
 |
|
|
|
|