0
Hi,
Clear all browsing data :-
- Clear browsing
- historyClear download history
- Empty the cache
- Delete cookies and other site data
0
Hello,
Refer this links hope it will helps you
https://stackoverflow.com/questions/37112367/size-of-the-request-headers-is-too-long
http://timourrashed.com/how-to-fix-the-400-bad-request-error-message-from-a-website/
-1
Have you tried clearing your cookies within your browser?
It could be possible that you have an overly large number of cookies being stored that will be added to any and all requests made within your browser. This can sometimes lead to issues like this. Additionally, you could try running your application within a different browser to see if that affects anything.
As an alternate solution, you could consider increasing the size of the MaxRequestLength as mentioned in this article or within your web.config as seen below using :
<configuration> <system.web> <httpRuntime maxRequestLength="1048576" /> </system.web> </configuration>
and :
<system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering> </security> </system.webServer>