Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
483 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 Reply

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...