コード例 #1
0
    protected void ImageButton1_Click(object sender, EventArgs e)
    {
        //判断名称是否唯一性
        if (ZWL.Common.PublicMethod.IFExists("FormName", "ERPForm", 0, this.TextBox1.Text) == false)
        {
            ZWL.Common.MessageBox.Show(this, "该表单名称已经存在!");
            return;
        }

        if (this.TextBox1.Text.Trim().Length > 0)
        {
            ZWL.BLL.ERPForm Model = new ZWL.BLL.ERPForm();
            Model.ContentStr      = this.TxtContent.Text;
            Model.FormName        = this.TextBox1.Text;
            Model.FormType        = this.DropDownList3.SelectedItem.Text;
            Model.ShiYongUserList = this.TextBox3.Text;
            Model.TiaoJianList    = ZWL.Common.PublicMethod.GetSessionValue("TiaoJiaoList");
            Model.TimeStr         = DateTime.Now;
            Model.UserName        = ZWL.Common.PublicMethod.GetSessionValue("UserName");
            Model.Add();

            //写系统日志
            ZWL.BLL.ERPRiZhi MyRiZhi = new ZWL.BLL.ERPRiZhi();
            MyRiZhi.UserName    = ZWL.Common.PublicMethod.GetSessionValue("UserName");
            MyRiZhi.DoSomething = "用户添加表单信息(" + this.TextBox1.Text + ")";
            MyRiZhi.IpStr       = System.Web.HttpContext.Current.Request.UserHostAddress.ToString();
            MyRiZhi.Add();

            ZWL.Common.MessageBox.ShowAndRedirect(this, "表单信息添加成功!", "DesignForm.aspx");
        }
        else
        {
            ZWL.Common.MessageBox.Show(this, "表单标题不可以为空!");
        }
    }
コード例 #2
0
ファイル: DesignForm.aspx.cs プロジェクト: chocoai/YOA
    public void DataBindToGridview()
    {
        GVData.PageSize  = AspNetPager1.PageSize;
        GVData.PageIndex = AspNetPager1.CurrentPageIndex - 1;
        ZWL.BLL.ERPForm MyModel = new ZWL.BLL.ERPForm();
        DataSet         ds      = MyModel.GetList("FormName Like '%" + this.TextBox1.Text + "%'  and FormType like '%" + this.TextBox2.Text.Trim() + "%' order by ID desc");

        GVData.DataSource = ds;
        GVData.DataBind();
        AspNetPager1.RecordCount = ds.Tables[0].Rows.Count;
    }
コード例 #3
0
ファイル: FormView.aspx.cs プロジェクト: chocoai/YOA
 protected void Page_Load(object sender, EventArgs e)
 {
     if (!Page.IsPostBack)
     {
         ZWL.Common.PublicMethod.CheckSession();
         ZWL.BLL.ERPForm MyModel = new ZWL.BLL.ERPForm();
         MyModel.GetModel(int.Parse(Request.QueryString["ID"].ToString()));
         this.Label1.Text = MyModel.FormName;
         this.Label2.Text = MyModel.FormType;
         this.Label3.Text = MyModel.ShiYongUserList;
         this.Label4.Text = MyModel.TiaoJianList;
         this.Label5.Text = MyModel.UserName;
         this.Label6.Text = MyModel.TimeStr.ToString();
         this.Label7.Text = MyModel.ContentStr;
     }
 }
コード例 #4
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!Page.IsPostBack)
        {
            ZWL.Common.PublicMethod.CheckSession();
            ZWL.Common.PublicMethod.BindDDL(this.DropDownList3, ZWL.DBUtility.DbHelperSQL.GetSHSL("select top 1 FormTypeList from ERPFormType")); //绑定表单类别

            ZWL.BLL.ERPForm MyModel = new ZWL.BLL.ERPForm();
            MyModel.GetModel(int.Parse(Request.QueryString["ID"].ToString()));
            this.TextBox1.Text = MyModel.FormName;
            this.DropDownList3.SelectedValue = MyModel.FormType;
            this.TextBox3.Text   = MyModel.ShiYongUserList;
            this.TxtContent.Text = MyModel.ContentStr;

            ZWL.Common.PublicMethod.SetSessionValue("TiaoJiaoList", MyModel.TiaoJianList);
            ZWL.Common.PublicMethod.BindDDL(this.DropDownList1, ZWL.Common.PublicMethod.GetSessionValue("TiaoJiaoList"));
        }
    }