远程访问时,ASP.NET MVC站点的行为不同

时间:2012-10-30 06:10:48

标签: jquery asp.net-mvc iis

我已在IIS服务器上部署了我的MVC站点。如果我使用URL中的http://localhost访问它,它可以正常工作。 但是如果我在URL中使用机器名称/ IP地址,则某些功能无法正常工作。我想知道为什么会这样。以下是我面临的一些事情

  1. 我在对话框中使用了JQuery Tab。如果远程访问该站点,则该对话框不会提交数据。
  2. 我使用过JQuery Month导航器。我可以看到它在HttpPost控制器中提交正确的月份和年份,但控制器操作不会根据发布的数据重定向。
  3. 我无法理解为什么它的表现如此

    /* Some code for reference */
    
    @using (Html.BeginForm())
    {    
        .....
            <input type="submit" value="Save" class="buttonSave" onclick="return     ConfirmSave();" />                        
        </div> 
    }
    
    function ConfirmSave() {
        return confirm('You have selected to copy this entry.\n\n This action cannot be rolled back, and each created entry will need to be deleted independently. Are you sure you want to continue?');
    }
    

0 个答案:

没有答案