My previous question is urlrewriter problem: Query string is duplicated shown?
I'm developing asp.net web site. But has a one problem. There is duplicated query string like this www.domainname.com/default.aspx?Query=Value1&Query=Value2
I'm using to too many pages like this Request.QueryString["Query"]
. But this return Value1,Value2
. I don't want to fix this problem to too many pages. I want to fix querystring before pageload. I think that Maybe will write some function on global.asax. But i don't know to how write it.
You have a any idea?