Ejemplo n.º 1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        int SeciontId = Convert.ToInt32(Request.QueryString["sectionsId"]);

        IDAL.IAuthor ia    = BllFactory.BllAccess.CreateIAuthorBLL();
        int          count = ia.SectionCheckNo(SeciontId);

        if (count > 0)
        {
            Response.Write("{success:true,msg:'删除成功!'}");
        }
        else
        {
            Response.Write("{success:false,msg:'操作失败'}");
        }
    }
Ejemplo n.º 2
0
 //章节审核不通过
 public int SectionCheckNo(int sectionId)
 {
     return(IA.SectionCheckNo(sectionId));
 }