You got this error, what are you going to do ....
Your project stops and does not work, but usually it does not concern your code.
Of course, it depends on how you code, but if you haven't written any infinite loop, thatβs fine.
It concerns Visual Studio 2013, it tries to send long serialized data to the browser due to the option to include a link to the browser .
You can solve this problem in two ways.
Add this to appSettings in your web.config
<add key="vs:EnableBrowserLink" value="false" />
or
You can disable the following option in the tool menu

source share