T
Thom Little
Given the request ...
http://www.someurl.com/default.aspx?type=off
how can default.aspx read the values "type" and "off" from this example
using C# in ASP.NET?
In ASP it is something like ...
strWork = location.search.substring(0).split("&" )[0] ;
strLeft = strWork.split("=")[0] ;
strRight = strWork.split("=")[1] ;
http://www.someurl.com/default.aspx?type=off
how can default.aspx read the values "type" and "off" from this example
using C# in ASP.NET?
In ASP it is something like ...
strWork = location.search.substring(0).split("&" )[0] ;
strLeft = strWork.split("=")[0] ;
strRight = strWork.split("=")[1] ;