大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE稳定放心使用
aspx页面代码:
<asp:GridView ID="GridView2" runat="server">
<Columns>
<asp:BoundField HeaderText="ID" DataField="ID" />
<asp:BoundField HeaderText="Name" DataField="Name" />
<asp:BoundField HeaderText="Url" DataField="Url" />
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="DropDownList2" runat="server" DataSource='<%# GetDate()%>'
DataValueField="Val" DataTextField="Text">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
.cs代码: 绑定下拉数据源
public List<DateInfo> GetDate()
{
List<DateInfo> info = new List<DateInfo>();
using (this.context = new SDKDataContext())
{
var date = from c in this.context.DateInfo select c;
}
return info;
}
给下拉显示初始数据
public void BandingGridView()
{
using (this.context = new SDKDataContext())
{
var vData = from c in this.datacontext.DateInfo select c;
this.GridView2.DataSource = vData;
this.GridView2.DataBind();
foreach (GridViewRow gvr in GridView2.Rows)
{
DropDownList ddl = (DropDownList)gvr.FindControl("DropDownList2");
DateInfo info = new DateInfo();
info = vData[rows];
ddl.SelectedValue = info.Val.ToString();
}
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/184653.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...