Simple ASP.NET question involving Query Strings

CowsboroVaw

New Member
I am a web developer who is learning ASP.NET from the book "ASP.NET UNLEASHED". I have glanced through the book and looked at several web sites for information on Query Strings and how they are/or are not different in .NET. I can't find anything on this topic. Any help would be greatly appreciated.<BR><BR>thanks.You can use querystrings in the same way you did with asp. The only slight difference is how you access the querystring. In asp you could just say request("yourstring") or request.querystring("yourstring") with .net you should use <BR>Httpcontext.Request.Querystring("yourstring")
 
Back
Top