Below is my page load function...on debugging it, i came to know that as the page is loaded with a URL, it works fine..i.e. correct values are loaded via query strings but after traversing the master page..it again traverses the page_load function..and this
time i get the value "userStyle.css" in the variable 'aid'.
I tried replacing the master page and created another master page with nothing inside it..still the error persists...pls suggest.
Also..I am using Url rewriting...below are my Url rewite rules
<rewrite url="~/articles/(.+)/(.+)/(.+)/(.+)" to="~/articles.aspx?mainCat=$1&cat=$2&page=$3&aid=$4"/>
<rewrite url="~/articles/(.+)/(.+)" to="~/articles.aspx?mainCat=$1&cat=$2"/>
< ...
Go to the complete details ...