js绑定下拉框
2021-05-17 07:29
标签:button cat content nbsp move java key rem option ---恢复内容开始--- js部分 html部分 ajax部分 (此内容仅自己收藏查阅。若侵犯布者利益 ,请与我联系删除) 内容选自 http://www.cnblogs.com/holyknight-zld/archive/2012/10/23/Json_Bind_DropDownList.html ---恢复内容结束--- js绑定下拉框 标签:button cat content nbsp move java key rem option 原文地址:http://www.cnblogs.com/1439107348s/p/7744859.htmlJs代码 1
Html1 body>
form id="form1" runat="server">
div>
asp:DropDownList ID="ddlDatas" name="prov" runat="server" style="width:200px;">
asp:DropDownList>
input type="button" id="btnGet" value="获取数据" />
div>
form>
body>
using Newtonsoft.Json;
DataTable dt = ds.Tables[0];
string dtg = JsonConvert.SerializeObject(dt);
context.Response.Write(dtg);
context.Response.End();
上一篇:MVC设计模式