Esempio n. 1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     if (Session["isLogin"] != "ok")
     {
         Response.Redirect("../Login.aspx");
     }
     if (Request.QueryString["id"] != null)
     {
         strid = Request.QueryString["id"].ToString();
         Maticsoft.BLL.NewPort.Table_notice bll = new Maticsoft.BLL.NewPort.Table_notice();
         bll.Delete(strid);
     }
 }
Esempio n. 2
0
        private void ShowInfo(string strid)
        {
            Maticsoft.BLL.NewPort.Table_notice   nobll = new Maticsoft.BLL.NewPort.Table_notice();
            Maticsoft.Model.NewPort.Table_notice model = nobll.GetModel(strid);

            this.lbl_number.Text    = model.notice_id.ToString();
            this.lbl_time.Text      = model.notice_time.ToString();
            this.lbl_completed.Text = model.notice_topic.ToString();
            this.lbl_process.Text   = model.notice_content.ToString();
            filePath = model.notice_attachmentPath.ToString();
            if (filePath == "")
            {
                btnDownLoad.Visible = false;
            }
        }
Esempio n. 3
0
        protected void btneSubmit_Click(object sender, EventArgs e)
        {
            if (FileUpload1.HasFile)
            {
                //指定上传文件在服务器上的保存路径
                savePath = Server.MapPath("~/upload/");
                //检查服务器上是否存在这个物理路径,如果不存在则创建
                if (!System.IO.Directory.Exists(savePath))
                {
                    //需要注意的是,需要对这个物理路径有足够的权限,否则会报错
                    //另外,这个路径应该是在网站之下,而将网站部署在C盘却把上传文件保存在D盘
                    System.IO.Directory.CreateDirectory(savePath);
                }
                savePath = savePath + "//" + FileUpload1.FileName;
                FileUpload1.SaveAs(savePath);//保存文件
                //literal.Text = string.Format("<a href='upload/{0}'>upload/{0}</a>", FileUpload1.FileName);
            }


            Maticsoft.Model.NewPort.Table_notice model = new Maticsoft.Model.NewPort.Table_notice();

            model.notice_id             = txtnono.Text.Trim();
            model.notice_content        = txtcontent.Text.Trim();
            model.notice_topic          = txttitle.Text.Trim();
            model.notice_time           = System.DateTime.Now;
            model.notice_attachmentPath = savePath.ToString();

            try
            {
                Maticsoft.BLL.NewPort.Table_notice nobll = new Maticsoft.BLL.NewPort.Table_notice();
                nobll.Add(model);
                Maticsoft.Common.MessageBox.ShowAndRedirect(this, "保存成功!", "Notice.aspx");
            }
            catch (Exception e2) {
                Maticsoft.Common.MessageBox.ShowAndRedirect(this, "填写错误,请重新填写!", "Notice_Add.aspx");
            }
        }