DiscountASP.NET Support Portal
Language
 
Home>Knowledge Base>Windows 2008/IIS 7>General questions>Changing the default ASP.NET Trust Level
Information
Article ID401
Created On11/24/2008
Modified8/6/2009
Changing the default ASP.NET Trust Level
The default ASP.NET Trust level is set to Medium.

In general, most applications should run fine under Medium Trust. If your application requires Full Trust, you can override the trust level at the application level by adding the following to your web.config file: 

<configuration>
  <system.web>
    <trust level="Full" />
  </system.web>
</configuration>