コード例 #1
0
        protected void ButtonOrder_Click(object sender, EventArgs e)
        {
            string nameTask    = Request.Form["input_nameTask"];
            string description = Request.Form["input_description"];
            string price       = Request.Form["input_price"];
            string phone       = Request.Form["phone"];
            string firstName   = Request.Form["input_firstName"];
            string lastName    = Request.Form["address"];
            string email       = Request.Form["email"];
            string city        = Request.Form["city"];
            string place       = Request.Form["additem_place"];
            string address     = Request.Form["address"];


            var objPhotos = Request.Form["OrderPhotos"];

            Rentoolo.Model.CraftsManOrder order = new Model.CraftsManOrder();

            if (objPhotos != null)
            {
                String[] listPhotos = objPhotos.Split(',');

                var jsonPhotos = JsonConvert.SerializeObject(listPhotos);

                order.ImgUrls = jsonPhotos;
            }
            else
            {
                order.ImgUrls = "[\"/img/a/noPhoto.png\"]";
            }

            try
            {
                order.Price = double.Parse(price);
            }
            catch { }

            //order.video = video;

            //order.YouTubeUrl = video;

            //order.CreatedUserId = User.UserId;

            //order.Place = place;
            order.Created     = DateTime.Now;
            order.Address     = address;
            order.NameTask    = nameTask;
            order.Description = description;
            order.Phone       = phone;
            order.FirstName   = firstName;
            order.LastName    = lastName;
            order.Region      = city; //TODO переделать поля в бд
            order.Email       = email;

            CraftsManDataHelper.AddCraftsManOrder(order);

            Response.Redirect("CraftsManPage.aspx");
        }
コード例 #2
0
        protected void ButtonOrder_Click(object sender, EventArgs e)
        {
            string nameTask    = String.Format("{0}", Request.Form["MainContent$input_nameTask"]);
            string description = String.Format("{0}", Request.Form["MainContent$input_description"]);
            string price       = String.Format("{0}", Request.Form["MainContent$input_price"]);
            string phone       = String.Format("{0}", Request.Form["MainContent$phone"]);
            string firstName   = String.Format("{0}", Request.Form["MainContent$input_firstName"]);
            string lastName    = String.Format("{0}", Request.Form["MainContent$input_lastName"]);
            string address     = String.Format("{0}", Request.Form["MainContent$address"]);
            string email       = String.Format("{0}", Request.Form["MainContent$email"]);
            string country     = String.Format("{0}", Request.Form["MainContent$country"]);
            string region      = String.Format("{0}", Request.Form["MainContent$region"]);

            //var objPhotos = Request.Form[""];



            Rentoolo.Model.CraftsManOrder order = new Model.CraftsManOrder();

            //if (objPhotos != null)
            //{
            //    String[] listPhotos = objPhotos.Split(',');

            //    var jsonPhotos = JsonConvert.SerializeObject(listPhotos);

            //    order.ImgUrls = jsonPhotos;
            //}
            //else
            //{
            //    order.ImgUrls = "[\"/img/a/noPhoto.png\"]";
            //}

            //try
            //{
            //    order.Category = Int32.Parse(category);
            //}
            //catch { }
            try
            {
                order.Price = double.Parse(price);
            }
            catch { }

            //order.video = video;

            //order.YouTubeUrl = video;

            //order.CreatedUserId = User.UserId;

            order.Created     = DateTime.Now;
            order.Address     = address;
            order.NameTask    = nameTask;
            order.Description = description;
            order.Phone       = phone;
            order.FirstName   = firstName;
            order.LastName    = lastName;
            order.Region      = region;
            order.Country     = country;

            CraftsManDataHelper.AddCraftsManOrder(order);

            //Response.Redirect("");
        }