Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsUserAlreadyLogin)
     {
         MemberCenterPageRedirect("", "");
     }
     if (!IsPostBack)
     {
         string action = CommonMethod.FinalString(Request["action"]);
         if (action.Length > 0)
         {
             ExecStartupScript(string.Format("$('#main').attr('src','{0}');", Server.UrlDecode(action)));
         }
         int a = XiHuan_MessageFacade.GetNewMessageCount(CurrentUserId);
         if (a > 0)
         {
             ExecScript("ymPrompt.alert({title:'喜换网温馨提示:',message:'<span class=\"highlight\">" + CurrentUserName + "</span>,欢迎光临喜换网<br/><a href=\"membercenter.aspx?action=membermessage.aspx?type=receive\"><img src=\"images/UnRead.gif\" style=\"border:0px;cursor:pointer;vertical-align:middle;\" />&nbsp;您有<span class=\"highlight\">" + a + "</span>条消息未读!',fixPosition:true,winPos:'rb',showMask:false})");
         }
     }
 }
Ejemplo n.º 2
0
 private void LoadDefualtInfo()
 {
     if (!IsUserAlreadyLogin)
     {
         CommonMethod.ResponseAjaxContent(this.Page, "notlogin");
     }
     else
     {
         CommonMethod.ResponseAjaxContent(this.Page, CurrentUserId.ToString() + ";" + Microsoft.JScript.GlobalObject.escape(CurrentUserName) + ";" + XiHuan_MessageFacade.GetNewMessageCount(CurrentUserId).ToString());
     }
 }