Changing the default ASP.NET Trust Level

Most applications should run using 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>