I need to pass html code with QueryString because im using ajax method to send post(i mean comment not the type of method) on my web site. When I write a post like that.
"Hi everybody<br />Whats'up."
its just taking “Hi everybody” removing rest of the content.
Info : Im using GET Method
Don’t use
escape, it’s a deprecated function. UseencodeURIComponentinstead:Also, don’t forget about Internet Explorer’s 2,083 character limit in the address bar, you should use POST instead of GET if you want to avoid it.