Ejemplo n.º 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     this.lblMessage.Text = "";
     if (Request.QueryString["spcId"] != null)
     {
         spcId = Convert.ToInt32(Request.QueryString["spcId"]);
     }
     if (!currentAdmin.validationSpcAdmin(spcId.ToString()))
     {
         adminOpers.ShowNoPower();
         return;
     }
     if (!Page.IsPostBack)
     {
         this.litArticleCount.Text = bllarticle.getArticleCountBySpcId(spcId).ToString();
         getDefaultPageInfo();
     }
 }