Exemple #1
0
 protected void FillFeild()
 {
     if (_id != "0")
     {
         model            = bll.GetModel(this._id);
         model.templateId = this._id;
     }
     else
     {
         model.templateId = IdCreator.CreateId("T_ShortMessage_Template", "templateId");
         model.isUse      = 1;
     }
     model.flag       = this.ddlParentCategory.SelectedValue;   //标识
     model.supplierId = this.ddlSupplierCategory.SelectedValue; //供应商
     if (!string.IsNullOrEmpty(model.supplierId))
     {
         ShortMsgSupModel modelSup = new ShortMsgSupBll().GetModel(model.supplierId);
         if (modelSup != null)
         {
             model.supplierFlag = modelSup.flag;
         }
     }
     model.templateCode  = KillSqlIn.Form_ReplaceByString(Request.Form["txtCode"], 200);
     model.templateParam = KillSqlIn.Form_ReplaceByString(Request.Form["txtParam"], 200);
 }
Exemple #2
0
 /// <summary>
 /// 获得文章详细信息
 /// </summary>
 protected void GetMsgSupInfo()
 {
     model = bll.GetModel(this._id);
     if (model != null)
     {
         this.txtCode.Text = model.templateCode;
         if (!string.IsNullOrEmpty(model.flag))
         {
             this.ddlParentCategory.Items.FindByValue(model.flag).Selected = true;
         }
         if (!string.IsNullOrEmpty(model.supplierId))
         {
             this.ddlSupplierCategory.Items.FindByValue(model.supplierId).Selected = true;
         }
         this.txtParam.Text = model.templateParam;
     }
 }