Is there a way to simulate medium trust in VS2010

1.3k views Asked by At

I am looking for "easy button", where I can say run this app under medium trust.

2

There are 2 answers

0
Meligy On BEST ANSWER

Yes,

As per: http://blog.mahingupta.com/mahingupta/blog/post/2010/08/01/AspNet-Set-Medium-trust-in-local.aspx

<system.web>
    <trust level="Medium" />
</system.web>

Just note that most hosts do modifications to their medium trust offerings. Usually give few more permissions for LINQ and cross-server calls, but it differs from one host to another.

0
Oded On

You can configure medium trust - just add a configuration option.

To configure an application to run with medium trust, add the following element to either the application's specific Web.config file in the application's virtual root directory or to the machine-level Web.config file.

<trust level="Medium" originUrl="" />