Ejemplo n.º 1
0
        public string GetMyFileApprove(string pageSize, string pageIndex, string pname, string status)
        {
            BidingFileContext bc     = new BidingFileContext();
            string            userid = Session["UserId"].ToString();

            return(bc.GetMyFileApprove(userid, pageSize, pageIndex, pname, status));
        }
Ejemplo n.º 2
0
        public ActionResult FileApplicationDetail(string pid)
        {
            if (pid == null)
            {
                return(View("/Login"));
            }
            ViewBag.pid = pid;
            BidingFileContext bc = new BidingFileContext();
            DataTable         dt = bc.getBidingFileDetail(pid);
            DataRow           dr = dt.Rows[0];

            ViewBag.BidFileName        = dr["Name"].ToString();
            ViewBag.BidFileContent     = dr["Content"].ToString().Replace("\r\n", "<br/>");
            ViewBag.BidFileUserName    = dr["UserName"].ToString();
            ViewBag.BidFilePublishDate = dr["PublishDate"].ToString();
            ViewBag.RoleId             = Session["RoleId"].ToString();

            return(View());
        }
Ejemplo n.º 3
0
        // GET: MobileBidingFile
        //[VerifyMobileLoginFilter]
        public ActionResult Index(string pid)
        {
            if (!string.IsNullOrEmpty(Request["lcode"]))
            {
                string code = Request["lcode"].ToString();
                ViewBag.UserId = Request["userid"].ToString();
                SqlParameter[] paras = new SqlParameter[2];
                paras[0] = new SqlParameter("@uid", ViewBag.UserId);
                paras[1] = new SqlParameter("@code", code);
                string s = DBHelper.ExecuteSP("CheckLoginStatus", paras).Tables[0].Rows[0][0].ToString();
                if (s == "1")
                {
                    Session["UserId"] = Request["userid"].ToString();
                }
                else
                {
                    Response.Redirect("/MobileLogin");
                }
            }
            else if (Session["UserId"] != null)
            {
                ViewBag.UserId = Session["UserId"].ToString();
            }
            else
            {
                Response.Redirect("/MobileLogin");
            }
            if (pid == null)
            {
                return(View("/MobileLogin"));
            }
            ViewBag.pid = pid;
            BidingFileContext bc = new BidingFileContext();
            DataTable         dt = bc.getBidingFileDetail(pid);
            DataRow           dr = dt.Rows[0];

            ViewBag.BidFileName           = dr["Name"].ToString();
            ViewBag.BidFileContent        = dr["Content"].ToString().Replace("\r\n", "<br/>");
            ViewBag.BidFileUserName       = dr["Publisher"].ToString();
            ViewBag.BidFilePublishDate    = dr["PublishDate"].ToString();
            ViewBag.BidFileProDescription = dr["ProDescription"].ToString();
            return(View());
        }
Ejemplo n.º 4
0
        public ActionResult FileDetail(string pid)
        {
            ViewBag.SecondMenu = MenuHelper.GetSecondMenu("BidingFile", Session["RoleId"].ToString());
            if (pid == null)
            {
                return(View("/Login"));
            }
            ViewBag.pid = pid;
            BidingFileContext bc = new BidingFileContext();
            DataTable         dt = bc.getBidingFileDetail(pid);
            DataRow           dr = dt.Rows[0];

            ViewBag.BidFileName           = dr["Name"].ToString();
            ViewBag.BidFileContent        = dr["Content"].ToString().Replace("\r\n", "<br/>");
            ViewBag.BidFileUserName       = dr["Publisher"].ToString();
            ViewBag.BidFilePublishDate    = dr["PublishDate"].ToString();
            ViewBag.BidFileProDescription = dr["ProDescription"].ToString();


            return(View());
        }
Ejemplo n.º 5
0
        public string GetBidingFiles(string pageSize, string pageIndex, string pname)
        {
            BidingFileContext bc = new BidingFileContext();

            return(bc.GetBidingFiles(pageSize, pageIndex, pname, Session["UserId"].ToString()));
        }