@using MySystem.BsModels; @{PageUpdateInfo editData = ViewBag.data as PageUpdateInfo;} @{ string right = ViewBag.right as string; } 页面模板更新信息(修改)
@{string GotoPagesJson = "[";} @{Dictionary GotoPagesDic = new MySystem.PageUpdateInfoDictionary().getPageUpdateInfoDic();} @foreach (string key in GotoPagesDic.Keys) { GotoPagesJson += "{\"value\": \"" + key + "\", \"title\": \"" + GotoPagesDic[key] + "\" },"; } @{GotoPagesJson = GotoPagesJson.TrimEnd(','); GotoPagesJson += "]";}