全部,我有一个ASP.net MVC应用程序(使用DevEx控件)。我已通过IIS部署到测试服务器。当我运行应用程序时,它会为主页提供以下弹出窗口。
TESTSERVER:1234
如果我导航到其他页面,testserver:1234 / page1,testserver:1234 / page2它可以工作。 有没有人遇到同样的问题?你知道为什么我在主页testserver上弹出这个:1234。谢谢你的帮助。
我的控制器看起来如何:
public ActionResult Index()
{
ImportDataValidationErrors = new List<ImportFileRecord>();
return View();
}
这就是路由的外观:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "ImportData", action = "Index", id = UrlParameter.Optional }
);
}