Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
474 views
in Technique[技术] by (71.8m points)

asp.net - Throws Security Exception on server , runs on localhost

While running my project on localhost , it is working Good . But when I deployed it on my server , I am getting this type of error . Error : Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

it's getting cause of server security level limitation, you need to fixed this in your Web.Config file.

or

you can asked to Serve Vendor to change the Security Level for your Host.

<system.web>
  <securityPolicy>
    <trustLevel name="Full/High/Medium/Low/Minimal" policyFile="internal"/>
  </securityPolicy>
</system.web>

See the Reference Here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...