@using ZoomLa.BLL @using System.Text @using ZoomLa.Common @using ZoomLa.SQLDAL @model ZoomLaCMS.Models.Field.VM_FieldModel @functions{ } @{ string id = "txt_" + Model.fieldMod.FieldName; string value = "", value_src = ""; if (Model.GeneralID > 0) { string tbname = DataConvert.CStr(DBCenter.ExecuteScala("ZL_Model", "TableName", "ModelID=" + Model.fieldMod.ModelID)); value = Model.GetValue(); value_src = DataConvert.CStr(DBCenter.ExecuteScala(tbname, Model.fieldMod.FieldName + "_src", "ID=" + Model.valueDR["ID"])); } } @*Html和源码*@