protected void UpdateData() { try { //Detect Empty Text if (this.txtTitle.Text == "") { this.lblError.Text = Localization.GetString("errEmptyName.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } //string strSummary = txtSummary.Text; string strSummary = DataProcessingProvider.RemoveTags(this.txtSummary.Text); string strContent = DataProcessingProvider.RemoveTags(this.htmlContent.Text); string strAddRichInfo1 = DataProcessingProvider.RemoveTags(this.txtAddRichInfo1.Text); string strAddRichInfo2 = DataProcessingProvider.RemoveTags(this.txtAddRichInfo2.Text); string strAddRichInfo3 = DataProcessingProvider.RemoveTags(this.txtAddRichInfo3.Text); bool blIsOpenNewTab = chIsUrlWeb.Checked; //Detect Role if (!((m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.Create) && m_Serviced == -1) || ((m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.EditAfter) || m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.EditAll)) && m_Serviced != -1))) { this.lblError.Text = Localization.GetString("errNoRole.Text", this.LocalResourceFile); //this.lblError.Text = m_objRole.HasRole((int)THCore.CoreRole.Create).ToString(); this.lblError.Visible = true; return; } string strImageFile = ""; string strAvatar = ""; string strFolderName = m_strCategories; strFolderName = CategoryProvider.GetDefaultFolderPath(UIProvider.GetListBoxSelectedItems(",", chkCategoryList), this.PortalId); if (strFolderName == "" || strFolderName == null || strFolderName.Length == 0) { strFolderName = "Folder"; } string strFolderPath = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); if (!System.IO.Directory.Exists(strFolderPath)) { strFolderName = m_strFolderName; } /* * if (txtImageFile.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtImageFile.PostedFile.FileName.Substring(txtImageFile.PostedFile.FileName.LastIndexOf(@"\") + 1); * strImageFile = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileProvider.Upload(this.PortalId, strFolderName, strFileName, * txtImageFile.PostedFile.InputStream); * //FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtImageFile.PostedFile, false); * }*/ strImageFile = DNNRelatedProvider.GetFilePath(urlImageFile.Url, this.PortalId); if (strImageFile == "") { strImageFile = txtImageFileOld.Text; } /* * if (txtAvatar.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtAvatar.PostedFile.FileName.Substring(txtAvatar.PostedFile.FileName.LastIndexOf(@"\") + 1); * strAvatar = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileProvider.Upload(this.PortalId, strFolderName, strFileName, * txtAvatar.PostedFile.InputStream); * // FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtAvatar.PostedFile, false); * }*/ strAvatar = DNNRelatedProvider.GetFilePath(urlAvatar.Url, this.PortalId); if (strAvatar == "") { strAvatar = txtAvatarOld.Text; } int iOrder = -1; string strOrder = txtOrder.Text; if (!int.TryParse(strOrder, out iOrder)) { this.lblError.Text = Localization.GetString("errFormatOrder.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } DateTime ExpiredDate; ExpiredDate = DateTime.ParseExact(txtExpiredDate.Text, "dd/MM/yyyy", null); DateTime DisplayDate; if (txtDisplayDate.Text == "") { DisplayDate = DateTime.Today; } else { DisplayDate = DateTime.ParseExact(txtDisplayDate.Text, "dd/MM/yyyy", null); } DisplayDate.AddHours(DateTime.Now.Hour); DisplayDate.AddMinutes(DateTime.Now.Minute); DisplayDate.AddSeconds(DateTime.Now.Second); // Get Hot Period int intPeriod; if (!int.TryParse(this.txtHotPeriod.Text, out intPeriod)) { intPeriod = 0; } m_strCategories = UIProvider.GetListBoxSelectedItems(",", chkCategoryList); if (m_strCategories.Equals("")) { this.lblError.Text = "Chưa chọn chuyên mục"; this.lblError.Visible = true; return; } string strAddInfo1 = txtAddInfo1.Text; string strAddInfo2 = txtAddInfo2.Text; string strAddInfo3 = txtAddInfo3.Text; string strAddInfo4 = txtAddInfo4.Text; string strAddInfo5 = txtAddInfo5.Text; //Going into action. int result = 1; if (m_Serviced == -1) { string realTitle = ""; realTitle = DataProcessingProvider.RemoveTags(this.txtTitle.Text); result = ServiceProvider.InsertImage(realTitle, strSummary, strImageFile, strAvatar, blIsOpenNewTab, strContent, DateTime.Now, ExpiredDate, DisplayDate, DateTime.Now, this.UserId, chkIsHot.Checked, intPeriod, this.PortalId, false, iOrder, m_strCategories, strAddInfo1, strAddInfo2, strAddInfo3, strAddInfo4, strAddInfo5, strAddRichInfo1, strAddRichInfo2, strAddRichInfo3); if (result > 0) { LogProvider.InsertLogAction(result, ServiceProvider.TypeId, "", this.PortalId, (int)Connection.UtilsProvider.LogAction.Create, this.UserInfo.Username, this.UserId, realTitle, true, m_strCategories); } } else { string realTitle = ""; realTitle = DataProcessingProvider.RemoveTags(this.txtTitle.Text); DateTime CreateDate = DateTime.Parse(txtCreatedDateOld.Text); //ServiceProvider.UpdateImage(m_Serviced, txtTitleOld.Text, strSummary, strImageFile, strAvatar, blIsOpenNewTab, strContent, CreateDate, ExpiredDate, DisplayDate, DateTime.Now, this.UserId, chkIsHot.Checked, intPeriod, this.PortalId, false, iOrder, TH.Utils.UIProvider.GetListBoxSelectedItems(",", chkCategoryList)); ServiceProvider.UpdateImage(m_Serviced, realTitle, strSummary, strImageFile, strAvatar, blIsOpenNewTab, strContent, CreateDate, ExpiredDate, DisplayDate, DateTime.Now, this.UserId, chkIsHot.Checked, intPeriod, this.PortalId, false, iOrder, m_strCategories, strAddInfo1, strAddInfo2, strAddInfo3, strAddInfo4, strAddInfo5, strAddRichInfo1, strAddRichInfo2, strAddRichInfo3); result = m_Serviced; if (result > 0) { LogProvider.InsertLogAction(result, ServiceProvider.TypeId, "", this.PortalId, (int)Connection.UtilsProvider.LogAction.Update, this.UserInfo.Username, this.UserId, this.txtTitleOld.Text, true, m_strCategories); } } if (result == -2) { this.lblError.Text = Localization.GetString("errSameName.Text", this.LocalResourceFile); this.lblError.Visible = true; } else if (result <= 0) { this.lblError.Text = Localization.GetString("errSomeError.Text", this.LocalResourceFile); this.lblError.Visible = true; } else { JumpBack(false, result); } } catch (Exception ex) { this.lblError.Text = ex.GetType().ToString(); this.lblError.Visible = true; } }
private void UpdateData() { try { int portalId; portalId = this.PortalId; if (txtName.Text == "") { lblError.Text = Localization.GetString("errEmptyName.text", this.LocalResourceFile); lblError.Visible = true; return; } m_typeId = int.Parse(cboType.SelectedValue); int iLanguageId = DotNetNuke.Services.Localization.LocaleController.Instance.GetCurrentLocale(this.PortalId).LanguageId; string strCutureCode = DotNetNuke.Services.Localization.LocaleController.Instance.GetCurrentLocale(this.PortalId).Code; CategoryEx ObjItem = new CategoryEx(m_intCategoryId, this.txtName.Text, this.htmlDescription.Text, this.txtToolTip.Text, int.Parse(this.cbCategories.SelectedValue), portalId, false, this.cbDefaultFolder.SelectedValue, this.chkIsDefaultXSL.Checked, DNNRelatedProvider.GetFilePath(this.urlXslFile.Url, this.PortalId), DNNRelatedProvider.GetFilePath(this.urlIcon.Url, this.PortalId), m_typeId, this.chkIsNeedApprove.Checked, this.chkIsNeedPublic.Checked, this.txtExtended.Text, int.Parse(this.txtOrder.Text), iLanguageId, strCutureCode, this.chbDip1.Checked, this.chbDip2.Checked, this.chbDip3.Checked, this.chbDip4.Checked, this.chbDip5.Checked, this.txtAddInfo1.Text, this.txtAddInfo2.Text, this.txtAddInfo3.Text, this.txtAddInfo4.Text, this.txtAddInfo5.Text); int result; if (m_intCategoryId == -1) { result = ObjItem.Insert(this.UserId); if (result > 0) { JumpBack(); } else if (result == -1) { this.lblError.Text = Localization.GetString("errExistedName.text", this.LocalResourceFile); this.lblError.Visible = true; } else if (result == -2) { this.lblError.Text = Localization.GetString("errParentNotFound.text", this.LocalResourceFile); this.lblError.Visible = true; } } else { result = ObjItem.Update(this.UserId); if (result > 0) { #region danh dau them moi try { File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache.txt"), "1"); File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache_" + this.PortalId + ".txt"), "1"); } catch (Exception ex) { } #endregion JumpBack(); } else if (result == -1) { this.lblError.Text = Localization.GetString("errCategoryNotFound.text", this.LocalResourceFile); this.lblError.Visible = true; } else if (result == -2) { this.lblError.Text = Localization.GetString("errExistedName.text", this.LocalResourceFile); this.lblError.Visible = true; } else if (result == -3) { this.lblError.Text = Localization.GetString("errParentNotFound.text", this.LocalResourceFile); this.lblError.Visible = true; } } } catch (Exception ex) { this.lblError.Text = ex.Message; this.lblError.Visible = true; } }
protected void UpdateData() { try { //Detect Empty Text if (this.txtProductName.Text == "") { this.lblError.Text = Localization.GetString("errEmptyName.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } string strLead = txtLead.Text; string strCode = txtCode.Text; string strSummary = txtSummary.Text; string straddRichInfo1 = txtaddRichInfo1.Text; string straddRichInfo2 = txtaddRichInfo2.Text; string straddRichInfo3 = txtaddRichInfo3.Text; string strWeight = txtWeight.Text; double fWeight = -1; if (!double.TryParse(strWeight, out fWeight)) { this.lblError.Text = Localization.GetString("errFormatWeight.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } int iPrice = -1; string strPrice = txtPrice.Text; if (!int.TryParse(strPrice, out iPrice)) { this.lblError.Text = Localization.GetString("errFormatPrice.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } int iPriceOld = -1; string strPriceOld = txtPriceOld.Text; if (!int.TryParse(strPriceOld, out iPriceOld)) { this.lblError.Text = Localization.GetString("errFormatPriceOld.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } int iOrder = -1; string strOrder = txtOrder.Text; if (!int.TryParse(strOrder, out iOrder)) { this.lblError.Text = Localization.GetString("errFormatOrder.Text", this.LocalResourceFile); this.lblError.Visible = true; return; } string strStatusProduct = txtStatusProduct.Text; string straddInfo1 = txtaddInfo1.Text; string straddInfo2 = txtaddInfo2.Text; string straddInfo3 = txtaddInfo3.Text; string straddInfo4 = txtaddInfo4.Text; string straddInfo5 = txtaddInfo5.Text; string straddInfo6 = txtaddInfo6.Text; //Detect Role if (!((m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.Create) && m_ProductId == -1) || ((m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.EditAfter) || m_objRole.HasRole((int)Connection.UtilsProvider.CoreRole.EditAll)) && m_ProductId != -1))) { this.lblError.Text = Localization.GetString("errNoRole.Text", this.LocalResourceFile); //this.lblError.Text = m_objRole.HasRole((int)THCore.CoreRole.Create).ToString(); this.lblError.Visible = true; return; } string strSmallimage = ""; string strLargeimage = ""; string strImageAdd1 = ""; string strImageAdd2 = ""; string strImageAdd3 = ""; string strFolderName = m_strCategories; strSmallimage = DNNRelatedProvider.GetFilePath(urlSmallImage.Url, this.PortalId); strLargeimage = DNNRelatedProvider.GetFilePath(urlLargeImage.Url, this.PortalId); strImageAdd1 = DNNRelatedProvider.GetFilePath(urlSmallImageImgAdd1.Url, this.PortalId); strImageAdd2 = DNNRelatedProvider.GetFilePath(urlSmallImageImgAdd2.Url, this.PortalId); strImageAdd3 = DNNRelatedProvider.GetFilePath(urlSmallImageImgAdd3.Url, this.PortalId); /* * strFolderName = CategoryProvider.GetDefaultFolderPath(TH.Utils.UIProvider.GetListBoxSelectedItems(",", chkCategoryList), this.PortalId); * if (strFolderName == "" || strFolderName == null || strFolderName.Length == 0) * { * strFolderName = "Folder"; * } * string strFolderPath = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * if (!System.IO.Directory.Exists(strFolderPath)) * strFolderName = m_strFolderName; #region * if (txtSmallimage.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtSmallimage.PostedFile.FileName.Substring(txtSmallimage.PostedFile.FileName.LastIndexOf(@"\") + 1); * strSmallimage = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtSmallimage.PostedFile, false); * * } * if (strSmallimage == "") * strSmallimage = txtSmallimageOld.Text; #endregion #region * if (txtLargeimage.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtLargeimage.PostedFile.FileName.Substring(txtLargeimage.PostedFile.FileName.LastIndexOf(@"\") + 1); * strLargeimage = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtLargeimage.PostedFile, false); * } * * if (strLargeimage == "") * strLargeimage = txtLargeimageOld.Text; #endregion #region imageAdd1 * * if (txtAddImage1.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtAddImage1.PostedFile.FileName.Substring(txtAddImage1.PostedFile.FileName.LastIndexOf(@"\") + 1); * strImageAdd1 = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtAddImage1.PostedFile, false); * } * * if (strImageAdd1 == "") * strImageAdd1 = txtImageAdd1Old.Text; #endregion #region imageAdd2 * * if (txtAddImage2.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtAddImage2.PostedFile.FileName.Substring(txtAddImage2.PostedFile.FileName.LastIndexOf(@"\") + 1); * strImageAdd2 = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtAddImage2.PostedFile, false); * } * * if (strImageAdd2 == "") * strImageAdd2 = txtImageAdd2Old.Text; #endregion #region imageAdd3 * * if (txtAddImage3.PostedFile.FileName.Length != 0) //&& chkUseImage.Checked * { * string strFileName = txtAddImage3.PostedFile.FileName.Substring(txtAddImage3.PostedFile.FileName.LastIndexOf(@"\") + 1); * strImageAdd3 = string.Format("{0}{1}", strFolderName, strFileName); * string strParentFolder = string.Format("{0}{1}", PortalSettings.HomeDirectoryMapPath, strFolderName); * FileSystemUtils.UploadFile(strParentFolder.Replace("/", @"\"), txtAddImage3.PostedFile, false); * } * * if (strImageAdd3 == "") * strImageAdd3 = txtImageAdd3Old.Text; #endregion */ DateTime ProducedDate; ProducedDate = DateTime.ParseExact(txtProducedDate.Text, "dd/MM/yyyy", null); DateTime ExpiredDate; ExpiredDate = DateTime.ParseExact(txtExpiredDate.Text, "dd/MM/yyyy", null); DateTime DisplayDate; if (txtDisplayDate.Text == "") { DisplayDate = DateTime.Today; } else { DisplayDate = DateTime.ParseExact(txtDisplayDate.Text, "dd/MM/yyyy", null); } DisplayDate.AddHours(DateTime.Now.Hour); DisplayDate.AddMinutes(DateTime.Now.Minute); DisplayDate.AddSeconds(DateTime.Now.Second); // Get Hot Period int intPeriod; if (!int.TryParse(this.txtHotPeriod.Text, out intPeriod)) { intPeriod = 0; } // DyncmicForm string strExtendedSettings = GetValueDynamic(strFolderName); m_strCategories = UIProvider.GetListBoxSelectedItems(",", chkCategoryList); m_strTags = UIProvider.GetListBoxSelectedItems(",", chkTags); if (m_strCategories.Equals("")) { this.lblError.Text = "Chưa chọn chuyên mục"; this.lblError.Visible = true; return; } //Going into action. int result = 1; if (m_ProductId == -1) { string realProductName = ""; realProductName = DataProcessingProvider.RemoveTags(this.txtProductName.Text); result = ProductProvider.InsertProduct(realProductName, strLead, DataProcessingProvider.RemoveTags(strSummary), strSmallimage, strLargeimage, fWeight, DateTime.Now, ExpiredDate, DateTime.Now, ProducedDate, true, false, chkIsHot.Checked, intPeriod, this.UserId, this.PortalId, false, iPrice, iPriceOld, strStatusProduct, strExtendedSettings, iOrder, m_strCategories, strCode, strImageAdd1, strImageAdd2, strImageAdd3, DisplayDate, straddInfo1, straddInfo2, straddInfo3, straddInfo4, straddInfo5, straddInfo6, DataProcessingProvider.RemoveTags(straddRichInfo1), DataProcessingProvider.RemoveTags(straddRichInfo2), DataProcessingProvider.RemoveTags(straddRichInfo3), m_strTags, 1); if (result > 0) { #region danh dau them moi try { File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache.txt"), "1"); File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache_" + this.PortalId + ".txt"), "1"); } catch (Exception ex) { } #endregion LogProvider.InsertLogAction(result, ProductProvider.TypeId, "", this.PortalId, (int)Connection.UtilsProvider.LogAction.Create, this.UserInfo.Username, this.UserId, this.txtProductName.Text, true, m_strCategories); } } else { DateTime CreateDate = DateTime.Parse(txtCreatedDateOld.Text); string realTitle = ""; realTitle = DataProcessingProvider.RemoveTags(this.txtProductName.Text); ProductProvider.UpdateProduct(m_ProductId, realTitle, strLead, DataProcessingProvider.RemoveTags(strSummary), strSmallimage, strLargeimage, fWeight, CreateDate, ExpiredDate, DateTime.Now, ProducedDate, true, false, chkIsHot.Checked, intPeriod, this.UserId, this.PortalId, false, iPrice, iPriceOld, strStatusProduct, iOrder, strExtendedSettings, m_strCategories, strCode, strImageAdd1, strImageAdd2, strImageAdd3, DisplayDate, straddInfo1, straddInfo2, straddInfo3, straddInfo4, straddInfo5, straddInfo6, DataProcessingProvider.RemoveTags(straddRichInfo1), DataProcessingProvider.RemoveTags(straddRichInfo2), DataProcessingProvider.RemoveTags(straddRichInfo3), m_strTags, 1); result = m_ProductId; if (result > 0) { #region danh dau them moi try { File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache.txt"), "1"); File.WriteAllText(Server.MapPath("/DesktopModules/TH.NUCE.Utils/Configuration/ResetCache_" + this.PortalId + ".txt"), "1"); } catch (Exception ex) { } #endregion LogProvider.InsertLogAction(result, ProductProvider.TypeId, "", this.PortalId, (int)Connection.UtilsProvider.LogAction.Update, this.UserInfo.Username, this.UserId, this.txtProductName.Text, true, m_strCategories); } } if (result == -2) { this.lblError.Text = Localization.GetString("errSameName.Text", this.LocalResourceFile); this.lblError.Visible = true; } else if (result <= 0) { this.lblError.Text = Localization.GetString("errSomeError.Text", this.LocalResourceFile); this.lblError.Visible = true; } else { JumpBack(false, result); } } catch (Exception ex) { //this.lblError.Text = ex.GetType().ToString(); this.lblError.Text = ex.ToString(); this.lblError.Visible = true; } }