Beispiel #1
0
        public static ModelThongbao get_flash()
        {
            ModelThongbao thongbao = (ModelThongbao)System.Web.HttpContext.Current.Session["Thongbao"];

            System.Web.HttpContext.Current.Session["Thongbao"] = "";
            return(thongbao);
        }
Beispiel #2
0
        public static void set_flash(String msg, String msg_type)
        {
            ModelThongbao thongbao = new ModelThongbao();

            thongbao.msg      = msg;
            thongbao.msg_type = msg_type;
            System.Web.HttpContext.Current.Session["Thongbao"] = thongbao;
        }