Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does anyone know how to get rid of the jsdebug requests from my .net web service

We have a ajax listprovider for typeahead text fields in our webform site. Every page now requests a listprovider.asmx/jsdebug with no caching parameters etc.

How do we turn that off?

like image 217
malsmith Avatar asked Dec 18 '08 18:12

malsmith


1 Answers

You need to make sure that the debug attribute is set to false in your web.config, it is part of the compilation element in system.web.

Hope that helps...

Steve

like image 183
Stephen Newman Avatar answered Sep 20 '22 23:09

Stephen Newman