I want to know what is the best solution for creating ASP.NET HTTP Handler (.ashx) with long Query string parameters, as i have parameter like “description” which will be a long string which will make a problem in URL when access it by HTTP Request.
Share
if you just want use
GETmethod,you can’t solved this problem,you can set it at What is the maximum length of a URL? why.you can change you .ASHX file accept the
POSTmethod.your server-side code like this :
or alternative(based on your client-side how to send data)
your client-side: