I am using UIWebView in my application. I am loading a html which as <a href> tag with some url.
Hyperlink has & character
for eg http://www.abc.com/myfile?param1=aa¶m2=bb
In the delegate method shouldStartLoadingWithRequest
NSURLRequest *)request.... by using [[request URL] absoluteString] I am getting a url without & charater, I mean I was expecting
http://www.abc.com/myfile?param1=aa¶m2=bb
But I am getting
http://www.abc.com/myfile?param1=aaparam2=bb
What can be problem?
Hyperlink has & character
for eg http://www.abc.com/myfile?param1=aa¶m2=bb
In the delegate method shouldStartLoadingWithRequest
http://www.abc.com/myfile?param1=aa¶m2=bb
But I am getting
http://www.abc.com/myfile?param1=aaparam2=bb
What can be problem?