如何将自定义aspx页面重定向到mvc操作方法

时间:2016-10-07 06:52:47

标签: c# asp.net asp.net-mvc routing nopcommerce

我已将aspx项目升级到mvc。现在我的一些旧客户使用.aspx页面调用url,他们在mvc项目中获得404(未找到)。

所以现在我必须将.aspx重定向到mvc页面。

旧网址

www.domain.com/bookshop/showproduct.aspx?isbn=978-1-59333-934-0

新网址

www.domain.com/{product_name}

我正在考虑通过mvc的路由机制来做。就像一旦这种类型的网址来了,它应该调用我的自定义mvc动作,在字符串参数中我将得到showproduct.aspx?isbn = 978-1-59333-934-0

请你用最少的代码建议一个最好的方法。

1 个答案:

答案 0 :(得分:1)

创建一个新类RouteHandler,如下所示:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Routing;

namespace Sample.Helpers
{
    public class RouteHandler : IRouteHandler
    {
        public IHttpHandler GetHttpHandler(RequestContext requestContext)
        {
            return new ASPDotNetHttpHandler();
        }
    }

    public class ASPDotNetHttpHandler : IHttpHandler
    {
        public bool IsReusable
        {
            get
            {
                return true;
            }
        }

        public void ProcessRequest(HttpContext context)
        {
            string product = context.Request.QueryString["isbn"];
            int index = context.Request.Url.AbsoluteUri.IndexOf("bookshop/showproduct.aspx?");

            if (!(string.IsNullOrEmpty(product) || index == -1))
            {
                string newUrl = context.Request.Url.AbsoluteUri.Substring(0, index)+"/" + product;
                context.Response.Redirect(newUrl, true);
            }
        }
    }
}

在RouteConfig.cs文件的RegisterRoutes方法中插入新路由,如下所示:

    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

    routes.Add(new Route("bookshop/showproduct.aspx", new BIRS.Web.Helpers.RouteHandler()));