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
197 views
in Technique[技术] by (71.8m points)

asp.net mvc - Page does not work after published with Visual Studio 2013

I have an application that works perfectly in the local host, but when I publish it to a remote server I have a problem. I can see the page published that seems fine, but when I click "SAVE" it goes to a blank page and nothing happens.

What could I be missing?

I do not know what kind of information about the application that I could provide here to help to find a solution.

question from:https://stackoverflow.com/questions/65919880/page-does-not-work-after-published-with-visual-studio-2013

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

1 Reply

0 votes
by (71.8m points)

I made a change in the Web.config and worked.

This was before:

<system.webServer>
    <modules>
      <remove name="FormsAuthentication" />
    </modules>
</system.webServer>

Now, what worked:

<system.webServer>
    <modules  runAllManagedModulesForAllRequests="true" />
</system.webServer>

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

...