我有一个托管在 IIS7(集成池)中的 MVC2 应用程序。我用来访问应用程序的链接是这样的
http://88.88.88.88/testapp/
我正在从我的“HomeController.cs”调用 PrintApp 函数,如下所示。
var printForm = jQuery('<form>', {
'method' : 'post',
'action' : 'Home/PrintApp'
.....});
printForm .submit();
当我将它与 Visual Studio 开发服务器一起使用时,它可以工作。但是当部署在 IIS 上时,它给了我 404 错误。
我试过了,
'action' : '../Home/PrintApp'
但这也给了我同样的错误。唯一有效的是
'action' : 'http://88.88.88.88/testapp/Home/PrintApp'
这不是最好的方法。有人可以确定问题所在吗?