码迷,mamicode.com
首页 > 其他好文 > 详细

跳转到指定页面的回调

时间:2015-09-11 10:20:21      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

可以通过处理请求开始的回调来指定跳转的到指定的页面

[RegisterTo(typeof(IApplicationBeginRequestCallback))]

 

示列代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using System.Web;
using ZKWebFramework.Model.Callbacks;
using ZKWebFramework.Utils.Collections;

namespace YiMei.Main.Callbacks {
    /// <summary>
    /// 处理请求开始的回调
    /// </summary>
    [RegisterTo(typeof(IApplicationBeginRequestCallback))]
    public class ApplicationBeginRequestCallback :
        DefaultExecuteOrder, IApplicationBeginRequestCallback {
        /// <summary>
        /// 重定向登录,注册,首页
        /// </summary>
        public void OnBeginRequest() {
            var context = HttpContext.Current;
            var path = context?.Request.Path.ToLower();
            if (context.Request.HttpMethod.ToLower() == "get") {
                if (path == "/index")
                    context?.Response.Redirect("/yimei_home/index");
            }
        }
    }
}

 

跳转到指定页面的回调

标签:

原文地址:http://www.cnblogs.com/zhongku/p/4800017.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!