예제 #1
0
 private void LoadData()
 {
     //try
     {
         string       Lang = ddlLanguage.SelectedValue;
         AspxPageInfo obj  = new AspxPageInfo();
         DataSet      ds   = obj.GetAspxPageInfo("AspxPageInfo", Globals.AgentCatID, Lang);
         if (ds.Tables[0].Rows.Count > 0)
         {
             flag = true;
             txtPageDescription.Value = Convert.ToString(ds.Tables[0].Rows[0]["PageDescription"]);
             txtPageTitle.Value       = Convert.ToString(ds.Tables[0].Rows[0]["PageTitle"]);
             txtPageKeyword.Value     = Convert.ToString(ds.Tables[0].Rows[0]["PageKeyword"]);
             txtTagContent.Value      = Convert.ToString(ds.Tables[0].Rows[0]["TagContent"]);
         }
         else
         {
             flag = false;
             txtPageDescription.Value = "";
             txtPageTitle.Value       = "";
             txtPageKeyword.Value     = "";
             txtTagContent.Value      = "";
         }
         //MessageBox.Show(flag.ToString());
     }
     //catch { }
 }
예제 #2
0
    protected void btnSave_Click(object sender, EventArgs e)
    {
        string       PageDescription = txtPageDescription.Value.Trim();
        string       PageTitle       = txtPageTitle.Value.Trim();
        string       PageKeyword     = txtPageKeyword.Value.Trim();
        string       TagContent      = txtTagContent.Value.Trim();
        AspxPageInfo obj             = new AspxPageInfo();
        int          kq = -1;

        if (flag) //update
        {
            kq = obj.UpdatePageInfo(Globals.AgentCatID, ddlLanguage.SelectedValue, PageTitle, PageDescription, PageDescription, PageKeyword, TagContent);
        }

        else //insert
        {
            kq = obj.InsertPageInfo(Globals.AgentCatID, ddlLanguage.SelectedValue, PageTitle, PageDescription, PageDescription, PageKeyword, TagContent);
        }
        //MessageBox.Show("insert");
        //MessageBox.Show(flag.ToString());
        lblMessage.Visible = true;
        if (kq != -1)
        {
            if (flag)
            {
                lblMessage.Text = "Đã cập nhật thông tin thành công!";
            }
            else
            {
                lblMessage.Text = "Đã thêm mới thông tin thành công!";
            }
        }
        else
        {
            if (flag)
            {
                lblMessage.Text = "Không thể cập nhật thông tin thành công!";
            }
            else
            {
                lblMessage.Text = "Không thể thêm mới thông tin thành công!";
            }
        }
    }