Пример #1
0
    protected void datasetbind()
    {
        int currentPage;

        try
        {

            currentPage = Convert.ToInt32(Request.QueryString["page"]);
        }
        catch
        {

            currentPage = 1;
        }
        if (currentPage == 0)
        {
            currentPage = 1;
        }
        LiuyanOperation aop = new LiuyanOperation();

        PagedDataSource ps = new PagedDataSource();

        //ps.DataSource=aop.
        ps.DataSource = aop.viewAll();//数据源为一个链表!,如此之棒,赞~!

        ps.AllowPaging = true;
        ps.PageSize = 10;
        ps.CurrentPageIndex = currentPage - 1;
        this.Pagination1.pageCount = ps.PageCount;
        this.Pagination1.currentPage = currentPage;
        this.Pagination1.pageUrl = "Liuyan.aspx";
        this.Pagination1.paramName = "page";
        this.Data_list_liuyan.DataSource = ps;
        this.Data_list_liuyan.DataBind();
    }
Пример #2
0
    protected void datasetbind()
    {
        int currentPage;

        try
        {
            currentPage = Convert.ToInt32(Request.QueryString["page"]);
        }
        catch
        {
            currentPage = 1;
        }
        if (currentPage == 0)
        {
            currentPage = 1;
        }
        LiuyanOperation aop = new LiuyanOperation();

        PagedDataSource ps = new PagedDataSource();

        //ps.DataSource=aop.
        ps.DataSource = aop.viewAll();//数据源为一个链表!,如此之棒,赞~!


        ps.AllowPaging                   = true;
        ps.PageSize                      = 10;
        ps.CurrentPageIndex              = currentPage - 1;
        this.Pagination1.pageCount       = ps.PageCount;
        this.Pagination1.currentPage     = currentPage;
        this.Pagination1.pageUrl         = "Liuyan.aspx";
        this.Pagination1.paramName       = "page";
        this.Data_list_liuyan.DataSource = ps;
        this.Data_list_liuyan.DataBind();
    }
Пример #3
0
 protected void Btn_summit_Click(object sender, EventArgs e)
 {
     liuyan ly = new liuyan();
     LiuyanOperation lyop = new LiuyanOperation();
     ly.author = TextBox1.Text.ToString();
     ly.content = FCKeditor1.Value.ToString();
     lyop.insert_ly(ly);
     this.Data_list_liuyan.DataBind();
     Response.Redirect("liuyan.aspx");
 }
Пример #4
0
    protected void Btn_summit_Click(object sender, EventArgs e)
    {
        liuyan          ly   = new liuyan();
        LiuyanOperation lyop = new LiuyanOperation();

        ly.author  = TextBox1.Text.ToString();
        ly.content = FCKeditor1.Value.ToString();
        lyop.insert_ly(ly);
        this.Data_list_liuyan.DataBind();
        Response.Redirect("liuyan.aspx");
    }
Пример #5
0
 protected void Button1_Click(object sender, EventArgs e)
 {
     id = Request.QueryString["id"].ToString();
     liuyan ly = new liuyan();
     LiuyanOperation lyo = new LiuyanOperation();
     ly = lyo.getByAid(id);
     string t = TextBox1.Text.ToString();
     ly.huifu = t;
     bool b=lyo.update(ly);
     if (b)
         Response.Write("回复更新成功!");
     Response.Redirect("../Liuyan.aspx");
 }
Пример #6
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         try
         {
             id = Request.QueryString["id"].ToString();
             liuyan          ly  = new liuyan();
             LiuyanOperation lyo = new LiuyanOperation();
             ly            = lyo.getByAid(id);
             TextBox1.Text = ly.huifu;
         }
         catch
         { }
     }
 }
Пример #7
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            try
            {

                id = Request.QueryString["id"].ToString();
                liuyan ly = new liuyan();
                LiuyanOperation lyo = new LiuyanOperation();
                ly = lyo.getByAid(id);
                TextBox1.Text = ly.huifu;
            }
            catch
            { }
        }
    }
Пример #8
0
    protected void Button1_Click(object sender, EventArgs e)
    {
        id = Request.QueryString["id"].ToString();
        liuyan          ly  = new liuyan();
        LiuyanOperation lyo = new LiuyanOperation();

        ly = lyo.getByAid(id);
        string t = TextBox1.Text.ToString();

        ly.huifu = t;
        bool b = lyo.update(ly);

        if (b)
        {
            Response.Write("回复更新成功!");
        }
        Response.Redirect("../Liuyan.aspx");
    }
Пример #9
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            try
            {
                string id = Request.QueryString["id"].ToString();
                LiuyanOperation lo = new LiuyanOperation();
                if (lo.delete(id))
                {
                    Response.Write("删除成功!");
                    Response.Redirect("../Liuyan.aspx");
                };
            }
            catch
            { }

        }
    }
Пример #10
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!IsPostBack)
     {
         try
         {
             string          id = Request.QueryString["id"].ToString();
             LiuyanOperation lo = new LiuyanOperation();
             if (lo.delete(id))
             {
                 Response.Write("删除成功!");
                 Response.Redirect("../Liuyan.aspx");
             }
             ;
         }
         catch
         { }
     }
 }