gpt4 book ai didi

c# - 在 IIS6 上使用 Decimal In Route 进行路由

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:55 25 4
gpt4 key购买 nike

我的 MVC3 项目中有一个路由,当通过调试器和 IIS7 运行时,该路由在本地运行得非常好。但是,我们的服务器是 IIS6,当我将我的应用程序移出时,出现“找不到页面”错误。我的猜测是它与 route 的小数点有关..

所以我尝试实现一个 RouteHandler,它似乎被调用但不能正常工作,因为路由中的值没有被覆盖?

无论如何,这是我的路线:

var route = context.MapRoute(
"Management_version",
"Management/Version/{versionNumber}/{action}",
new { area = "Management", controller = "Version", action = "View" },
new[] { "FRSDashboard.Web.Areas.Management.Controllers" }
);
route.RouteHandler = new HyphenatedRouteHandler();

和我的路线处理程序:

public class HyphenatedRouteHandler : MvcRouteHandler
{
protected override IHttpHandler GetHttpHandler(RequestContext requestContext)
{
var versionNumberContext = requestContext.RouteData.Values["versionNumber"];
requestContext.RouteData.DataTokens["versionNumber"] = versionNumberContext.ToString().Replace(".", "-");

return base.GetHttpHandler(requestContext);
}
}

基本上,我试图用连字符替换小数点来解决这个问题。任何建议将不胜感激。

最佳答案

原来除了应用程序扩展通配符之外,我还需要为“aspnet_isapi.dll”设置一个通配符应用程序映射。两个通配符都必须取消选中“验证文件是否存在”选项。

关于c# - 在 IIS6 上使用 Decimal In Route 进行路由,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7530827/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com