我已在IIS服务器上部署了我的MVC站点。如果我使用URL中的http://localhost
访问它,它可以正常工作。
但是如果我在URL中使用机器名称/ IP地址,则某些功能无法正常工作。我想知道为什么会这样。以下是我面临的一些事情
我无法理解为什么它的表现如此
/* 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?');
}