QueyString problem in IE6
-
Hi Friends.. I am using Asp.Net c# one of my project, there i am using QueryString to pass value from one page to another page as (www.xyz.com?a=old#10),
value=Request.QueryString["prd"]
the problem is that IE6 taken value=old#10 where is all browser taken value=old kindly help me i need only old . -
Hi Friends.. I am using Asp.Net c# one of my project, there i am using QueryString to pass value from one page to another page as (www.xyz.com?a=old#10),
value=Request.QueryString["prd"]
the problem is that IE6 taken value=old#10 where is all browser taken value=old kindly help me i need only old .Have you tried to encode the url
Server.URLEncode('www.xyz.com?a=old#10");
I know the language. I've read a book. - _Madmatt
-
Hi Friends.. I am using Asp.Net c# one of my project, there i am using QueryString to pass value from one page to another page as (www.xyz.com?a=old#10),
value=Request.QueryString["prd"]
the problem is that IE6 taken value=old#10 where is all browser taken value=old kindly help me i need only old .Solve by string.replace(IndexOf)
-
Solve by string.replace(IndexOf)
How did this solve your issue?
I know the language. I've read a book. - _Madmatt
-
How did this solve your issue?
I know the language. I've read a book. - _Madmatt
I think he did substring from the start to the index of '#' sign... :doh: ... otherwise we need to learn the programming again... :)