public string GetQX()
 {
     if (Session["qx"] == null)
     {
         JScript.AlertAndTopRedirect("请登录", "login.aspx", this);
         return("");
     }
     else
     {
         return(Session["qx"].ToString());
     }
 }