Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string id = "";
            //CheckBoxList_Reciever初始化
            if (!IsPostBack)
            {
                try
                {
                    id = Request.QueryString[0].ToString();
                    this.Label1.Text  = id;
                }
                catch { }
                DataSet ds = new DataSet();
                Maticsoft.BLL.W_Receiver bll = new Maticsoft.BLL.W_Receiver();
                ds = bll.GetAllList();
                this.CheckBoxList_Reciever.DataSource = ds;
                CheckBoxList_Reciever.DataTextField = "Receiver";
                CheckBoxList_Reciever.DataValueField = "Id";
                CheckBoxList_Reciever.DataBind();
                 if (id == "")
                {
                    this.TextBox_Address.Text = "http://kjc.jstu.edu.cn/news.aspx?id=205";
                    this.TextBox_Number.Text = "申报书一式三份,活页7份";
                    this.begindate.Text = DateTime.Now.ToShortDateString();
                    this.enddate.Text = DateTime.Now.AddDays(7).ToShortDateString();
                }

                else
                {
                    Maticsoft.BLL.W_Material bll2 = new Maticsoft.BLL.W_Material();
                    Maticsoft.Model.W_Material model = new Maticsoft.Model.W_Material();
                    model = bll2.GetModel(int.Parse( id));
                    this.Name.Text = model.Name;
                    this.begindate.Text = (Convert.ToDateTime( model.Begindate)).ToShortDateString();
                    this.enddate.Text = (Convert.ToDateTime(model.Enddate)).ToShortDateString();
                    this.TextBox_Address.Text = model.Address;
                    this.TextBox_Number.Text = model.Number;

                    DataSet ds2 = new DataSet();
                    Maticsoft.BLL.W_Receivestate bll3 = new Maticsoft.BLL.W_Receivestate();
                    ds2 = bll3.GetList("MaterialId=" + id);
                    for (int i = 0; i < ds2.Tables[0].Rows.Count; i++)
                    {
                       int j = int.Parse(ds2.Tables[0].Rows[i][2].ToString());
                       this.CheckBoxList_Reciever.Items[j-1].Selected=true ;
                        
                    
                     }
                
                }
            }
            
        }
Exemplo n.º 2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            string id = "";

            //CheckBoxList_Reciever初始化
            if (!IsPostBack)
            {
                try
                {
                    id = Request.QueryString[0].ToString();
                    this.Label1.Text = id;
                }
                catch { }
                DataSet ds = new DataSet();
                Maticsoft.BLL.W_Receiver bll = new Maticsoft.BLL.W_Receiver();
                ds = bll.GetAllList();
                this.CheckBoxList_Reciever.DataSource = ds;
                CheckBoxList_Reciever.DataTextField   = "Receiver";
                CheckBoxList_Reciever.DataValueField  = "Id";
                CheckBoxList_Reciever.DataBind();
                if (id == "")
                {
                    this.TextBox_Address.Text = "http://kjc.jstu.edu.cn/news.aspx?id=205";
                    this.TextBox_Number.Text  = "申报书一式三份,活页7份";
                    this.begindate.Text       = DateTime.Now.ToShortDateString();
                    this.enddate.Text         = DateTime.Now.AddDays(7).ToShortDateString();
                }

                else
                {
                    Maticsoft.BLL.W_Material   bll2  = new Maticsoft.BLL.W_Material();
                    Maticsoft.Model.W_Material model = new Maticsoft.Model.W_Material();
                    model                     = bll2.GetModel(int.Parse(id));
                    this.Name.Text            = model.Name;
                    this.begindate.Text       = (Convert.ToDateTime(model.Begindate)).ToShortDateString();
                    this.enddate.Text         = (Convert.ToDateTime(model.Enddate)).ToShortDateString();
                    this.TextBox_Address.Text = model.Address;
                    this.TextBox_Number.Text  = model.Number;

                    DataSet ds2 = new DataSet();
                    Maticsoft.BLL.W_Receivestate bll3 = new Maticsoft.BLL.W_Receivestate();
                    ds2 = bll3.GetList("MaterialId=" + id);
                    for (int i = 0; i < ds2.Tables[0].Rows.Count; i++)
                    {
                        int j = int.Parse(ds2.Tables[0].Rows[i][2].ToString());
                        this.CheckBoxList_Reciever.Items[j - 1].Selected = true;
                    }
                }
            }
        }
Exemplo n.º 3
0
        ////材料搜索
        //protected void BtnSearch_Click(object sender, ImageClickEventArgs e)
        //{

        //}

        //TreeView的绑定操作
        protected void TreeBind()
        {
            DataSet ds = new DataSet();

            Maticsoft.BLL.W_Receiver bll = new Maticsoft.BLL.W_Receiver();
            ds = bll.GetAllList();
            TreeNode tree1 = new TreeNode("学院信息", "0");

            this.TreeView1.Nodes.Add(tree1);
            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                TreeNode tree2 = new TreeNode(ds.Tables[0].Rows[i][1].ToString(), ds.Tables[0].Rows[i][0].ToString());
                tree1.ChildNodes.Add(tree2);
            }
        }
Exemplo n.º 4
0
        ////材料搜索
        //protected void BtnSearch_Click(object sender, ImageClickEventArgs e)
        //{
           
        //}

        //TreeView的绑定操作
        protected void TreeBind()
        {
            DataSet ds = new DataSet();
            Maticsoft.BLL.W_Receiver bll = new Maticsoft.BLL.W_Receiver();
            ds = bll.GetAllList();
            TreeNode tree1 = new TreeNode("学院信息","0");
            this.TreeView1.Nodes.Add(tree1);
            for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
            {
                TreeNode tree2 = new TreeNode(ds.Tables[0].Rows[i][1].ToString(), ds.Tables[0].Rows[i][0].ToString());
                tree1.ChildNodes.Add(tree2);

            }
        
        
        }