HostBuddy.com supports both Medium Turst and Full Trust. 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> |
If you want to use Medium Trust, you can add the following code to your web.config file:
<configuration> |
<system.web> |
<trust level="Medium" /> |
</system.web> |
</configuration> |
Article ID: 115, Created: July 5, 2012 at 2:06 AM, Modified: February 17, 2014 at 12:29 AM