void rptContents_ItemDataBound(object sender, RepeaterItemEventArgs e) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { var styleInfo = e.Item.DataItem as TableStyleInfo; var dataValue = _contentInfo.GetExtendedAttribute(styleInfo.AttributeName); dataValue = InputParserUtility.GetContentByTableStyle(dataValue, PublishmentSystemInfo, ETableStyle.InputContent, styleInfo); var ltlDataKey = e.Item.FindControl("ltlDataKey") as Literal; var ltlDataValue = e.Item.FindControl("ltlDataValue") as Literal; if (ltlDataKey != null) { ltlDataKey.Text = styleInfo.DisplayName; } if (ltlDataValue != null) { ltlDataValue.Text = dataValue; } } }
public override void Submit_OnClick(object sender, EventArgs e) { var isChanged = false; if (_contentId != 0) { try { var contentInfo = DataProvider.InputContentDao.GetContentInfo(_contentId); InputTypeParser.AddValuesToAttributes(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, PublishmentSystemInfo, _relatedIdentities, Page.Request.Form, contentInfo.Attributes); DataProvider.InputContentDao.Update(contentInfo); var builder = new StringBuilder(); var styleInfoList = TableStyleManager.GetTableStyleInfoList(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, _relatedIdentities); foreach (var styleInfo in styleInfoList) { if (styleInfo.IsVisible == false) { continue; } var theValue = InputParserUtility.GetContentByTableStyle(contentInfo.GetExtendedAttribute(styleInfo.AttributeName), PublishmentSystemInfo, ETableStyle.InputContent, styleInfo); builder.Append($@"{styleInfo.DisplayName}:{theValue},"); } if (builder.Length > 0) { builder.Length = builder.Length - 1; } if (builder.Length > 60) { builder.Length = 60; } Body.AddSiteLog(PublishmentSystemId, "修改提交表单内容", $"提交表单:{_inputInfo.InputName},{builder}"); isChanged = true; } catch (Exception ex) { FailMessage(ex, "信息修改失败:" + ex.Message); } } else { try { var ipAddress = PageUtils.GetIpAddress(); var contentInfo = new InputContentInfo(0, _inputInfo.InputId, 0, true, string.Empty, ipAddress, DateTime.Now, string.Empty); InputTypeParser.AddValuesToAttributes(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, PublishmentSystemInfo, _relatedIdentities, Page.Request.Form, contentInfo.Attributes); DataProvider.InputContentDao.Insert(contentInfo); var builder = new StringBuilder(); var styleInfoList = TableStyleManager.GetTableStyleInfoList(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, _relatedIdentities); foreach (var styleInfo in styleInfoList) { if (styleInfo.IsVisible == false) { continue; } var theValue = InputParserUtility.GetContentByTableStyle(contentInfo.GetExtendedAttribute(styleInfo.AttributeName), PublishmentSystemInfo, ETableStyle.InputContent, styleInfo); builder.Append($@"{styleInfo.DisplayName}:{theValue},"); } if (builder.Length > 0) { builder.Length = builder.Length - 1; } if (builder.Length > 60) { builder.Length = 60; } Body.AddSiteLog(PublishmentSystemId, "添加提交表单内容", $"提交表单:{_inputInfo.InputName},{builder}"); isChanged = true; } catch (Exception ex) { FailMessage(ex, "信息添加失败:" + ex.Message); } } if (isChanged) { PageUtils.CloseModalPageAndRedirect(Page, _returnUrl); } }
public void Main(int publishmentSystemId, int inputId) { var body = new RequestBody(); var publishmentSystemInfo = PublishmentSystemManager.GetPublishmentSystemInfo(publishmentSystemId); InputInfo inputInfo = null; if (inputId > 0) { inputInfo = DataProvider.InputDao.GetInputInfo(inputId); } if (inputInfo != null) { var relatedIdentities = RelatedIdentities.GetRelatedIdentities(ETableStyle.InputContent, publishmentSystemId, inputInfo.InputId); var ipAddress = PageUtils.GetIpAddress(); var contentInfo = new InputContentInfo(0, inputInfo.InputId, 0, inputInfo.IsChecked, body.UserName, ipAddress, DateTime.Now, string.Empty); try { if (!inputInfo.Additional.IsAnomynous && !body.IsUserLoggin) { throw new Exception("请先登录系统!"); } InputTypeParser.AddValuesToAttributes(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, publishmentSystemInfo, relatedIdentities, HttpContext.Current.Request.Form, contentInfo.Attributes, false); if (HttpContext.Current.Request.Files.Count > 0) { foreach (var attributeName in HttpContext.Current.Request.Files.AllKeys) { var myFile = HttpContext.Current.Request.Files[attributeName]; if (myFile == null || "" == myFile.FileName) { continue; } var fileUrl = UploadFile(publishmentSystemInfo, myFile); contentInfo.SetExtendedAttribute(attributeName, fileUrl); } } contentInfo.Id = DataProvider.InputContentDao.Insert(contentInfo); if (inputInfo.Additional.IsAdministratorSmsNotify) { var keys = TranslateUtils.StringCollectionToStringList(inputInfo.Additional.AdministratorSmsNotifyKeys); if (keys.Count > 0) { var parameters = new NameValueCollection(); if (keys.Contains(InputContentAttribute.Id)) { parameters.Add(InputContentAttribute.Id, contentInfo.Id.ToString()); } if (keys.Contains(InputContentAttribute.AddDate)) { parameters.Add(InputContentAttribute.AddDate, DateUtils.GetDateAndTimeString(contentInfo.AddDate)); } var styleInfoList = TableStyleManager.GetTableStyleInfoList(ETableStyle.InputContent, DataProvider.InputContentDao.TableName, relatedIdentities); foreach (var styleInfo in styleInfoList) { if (keys.Contains(styleInfo.AttributeName)) { var value = contentInfo.GetExtendedAttribute(styleInfo.AttributeName); parameters.Add(styleInfo.AttributeName, value); } } string errorMessage; SmsManager.SendNotify(inputInfo.Additional.AdministratorSmsNotifyMobile, inputInfo.Additional.AdministratorSmsNotifyTplId, parameters, out errorMessage); } } HttpContext.Current.Response.Write(StlInput.GetPostMessageScript(inputId, true)); HttpContext.Current.Response.End(); } catch (Exception) { HttpContext.Current.Response.Write(StlInput.GetPostMessageScript(inputId, false)); HttpContext.Current.Response.End(); } } }