尝试基于ControllerFactory,HttpModule的这种方法:
脚步:
1# 创建一个新的“类库”项目。添加对您的 asp.net mvc Web 应用程序项目的引用。还添加对“System.Web”、“System.Web.Mvc”、“Microsoft.Web.Infrastructure.dll”程序集的引用。
2#新建一个继承自有bug的控制器(TargetController)的Controller类:
public class FixedContorller : TargetController
{
[FixedActionSelector]
[ActionName("Index")]
public ActionResult FixedIndex()
{
ViewBag.Title = "I'm Fixed...";
return View();
}
}
[FixedActionSelectorAttribute] 是 ActionSelector 属性,用于解析动作名称。
public class FixedActionSelector : ActionMethodSelectorAttribute
{
public override bool IsValidForRequest(ControllerContext controllerContext, System.Reflection.MethodInfo methodInfo)
{
return true;
}
}
3#定义一个自定义ControllerFactory,它将创建固定控制器而不是目标控制器:
public class MyControllerFactory : DefaultControllerFactory
{
private static string targetControllerName = "Target";
private static string targetActionName = "Index";
protected override Type GetControllerType(System.Web.Routing.RequestContext requestContext, string controllerName)
{
var action = requestContext.RouteData.Values["action"].ToString();
if (targetControllerName.Equals(controllerName, StringComparison.InvariantCultureIgnoreCase) &&
targetActionName.Equals(action, StringComparison.InvariantCultureIgnoreCase))
{
return typeof(FixedContorller);
}
return base.GetControllerType(requestContext, controllerName);
}
}
4# 现在定义一个 HttpModule,它将在应用程序初始化时设置上述控制器工厂。httpModule 将以编程方式注册自身,无需在 web.config 中注册。
using System;
using System.Web;
using System.Web.Mvc;
[assembly: PreApplicationStartMethod(typeof(YourApp.Patch.FixerModule), "Register")]
namespace YourApp.Patch
{
public class FixerModule : IHttpModule
{
private static bool isStarted = false;
private static object locker = new object();
public void Dispose()
{
}
public void Init(HttpApplication context)
{
if (!isStarted)
{
lock (locker)
{
if (!isStarted)
{
ControllerBuilder.Current.SetControllerFactory(typeof(MyControllerFactory));
isStarted = true;
}
}
}
}
public static void Register()
{
Microsoft.Web.Infrastructure.DynamicModuleHelper.DynamicModuleUtility.RegisterModule(typeof(FixerModule));
}
}
}
编译项目并将 .dll 复制到 Web 应用程序的 bin 文件夹中。
希望这会有所帮助...