Click here to Skip to main content
16,011,804 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello friend

can you tell me how to disable option and trace methods on server.

i made a web application in which i want to disable option and trace method on server.
so please give me an idea how to do that.
Posted
Updated 23-Sep-13 19:01pm
v2

1 solution

I am guessing you want to disable tracing. Might be this is wath you nedd to do in web.config

XML
<configuration>
  <system.web>
    <trace enabled="false" >  </system.web>
</configuration>



For more information check this link
http://msdn.microsoft.com/en-us/library/bb386420.ASPX[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900