Beispiel #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            //var http = "hello";
            string userName = User.Identity.Name.Split('¬')[1];

            brUser = new BrUser();
            string stackFb = brUser.GetNotifications(userName);

            if (string.IsNullOrEmpty(stackFb))
            {
                stackFb = "there is a trouble";
            }
            Response.Write(stackFb);
        }