根据Mvc框架的修改连带修改相关的测试页面
netwjx authored at 2011-11-21 12:13:59
393.00 B
X
using System;
using System.Collections.Generic;
using System.Web;
using NewLife.Mvc;

/// <summary>
///TestFactory 的摘要说明
/// </summary>
public class TestFactory : IControllerFactory
{
    public IController GetController(IRouteContext context)
    {
        return new TestController();
    }

    public void ReleaseController(IController handler)
    {
    }
}