Dictionary<string, string> dc = new Dictionary<string, string>();
前台頁面:
<div id="tb"> @if (ViewBag.data != null) { foreach (KeyValuePair<string, string> item in ((System.Collections.Generic.Dictionary<string, string>)ViewBag.data)) { <input type="hidden" name="@item.Key" value="@item.Value" /> } } </div>