2014年12月31日 星期三

C# ashx 繼承

大家都知道,在ashx里面使用Session需要实现IRequiresSessionState接口。有时候我们需要判断此页面处理的请求是否是合法请求,比如说是登陆后的用户才可以请求,通常情况下都是通过Session来判断。但是每个界面写一个Session判断未免有显得太过于麻烦,所以我们可以通过实现一个基类,像我们平时写的BasePage一样,我们实现一个BaseHandler。代码如下:

/// <summary>
/// 如需要Session,ashx请继承此类并实现OnLoad方法
/// </summary>
public class BaseHandler : IHttpHandler, IRequiresSessionState
{
    public void ProcessRequest(HttpContext context)
    {
        if (context.Session == null)
        {
            context.Response.StatusCode = 405;
            context.Response.End();
        }
        if (context.Session["name"] == null)
        {
            context.Response.StatusCode = 405;
            context.Response.End();
        }
        OnLoad(context);
    }

    public bool IsReusable
    {
        get
        {
            return false;
        }
    }
    /// <summary>
    /// 代码实现
    /// </summary>
    /// <param name="context"></param>
    public virtual void OnLoad(HttpContext context)
    { 
    }
}

然后我们再回到ashx页面,现在我们来继承BaseHandler,不覆盖ProcessRequest,IsReusable方法,只需要实现OnLoad方法即可。如下:
public class test : BaseHandler
    {
        public override void OnLoad(HttpContext context)
        {
            string action = context.Request.QueryString["action"];
            if (string.IsNullOrEmpty(action))
                return;
           //DOSomething
        }
    }

參考資料:http://coderman.cn/archives/152

標籤:

2014年12月4日 星期四

C# datetime 轉 javascript datetime

dateUtility.js

Date.prototype.Format = function (fmt) { //author: meizz
    var o = {
        "M+": this.getMonth() + 1, //月份
        "d+": this.getDate(), //日
        "h+": this.getHours(), //小时
        "m+": this.getMinutes(), //分
        "s+": this.getSeconds(), //秒
        "q+": Math.floor((this.getMonth() + 3) / 3), //季度
        "S": this.getMilliseconds() //毫秒
    };
    if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));
    for (var k in o)
        if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));
    return fmt;
}



前台:
var pagePublishUp = <%= PagePublishUp %>; // /Date(1000002356894)/
new Date(parseInt(pagePublishUp.substr(6, 13))).Format("yyyy-MM-dd")

標籤: