11/30/2009
Get Querystring value from UrlReferrer
Posted by
Andre Small
Here is a snippet of code that I have found to be useful as of late.
NameValueCollection nameValueCollection = HttpUtility.ParseQueryString(Request.UrlReferrer.Query);
string keyword = nameValueCollection["kw"];
Enjoy.
« Back to Blog Main Page |