@{ string RightInfo = ViewBag.RightInfo as string; string right = ViewBag.right as string; string Id = ViewBag.Id as string; Dictionary query = ViewBag.query as Dictionary; string dateJs = ""; } 自定义提交
  • 基本信息
@foreach(string key in query.Keys) { string[] dataList = query[key].Split(new string[] { "#cut#" }, StringSplitOptions.None); string text = dataList[0]; string control = dataList[1]; if(control == "datetime" || control == "date" || control == "time" || control == "month") { dateJs += key + "_" + control + "|"; }
@if(control == "textarea") {
} else if(control == "select") { string[] options = dataList[2].Split(',');
} else {
}
}