I'm trying to deploy the default MVC project (from Visual Studio 2013) onto a remote server. They require the program to be running in Medium Trust mode, which I am having issues with. I've added <trust level="Medium" originUrl="" />
to the <system.web>
section of Web.config. Then when I try to run the program on my local machine, a SecurityException is thrown by this line:
@Html.ActionLink("Application name", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
This is located in the _Layout.cshtml file, which I haven't modified from the generated template (when you create a new MVC 5 project).
My question is: what do I need to do to get my project to run in Medium Trust mode?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…