• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在Gridview为DropDownlist添加数据源

用户头像
it1352
帮助1

问题说明



我有一个包含5列的gridview,其中包含4个文本框和一个Dropdownlist.

现在,我想通过数据源或数据表加载我的下拉列表.

怎么做?甚至我也需要加载页脚...请帮助我

我试过...我的代码在下面

我的.aspx代码



I have an gridview with 5 columns with that 4 textbox and One Dropdownlist.

Now i want to load my dropdownlist through an datasource or datatable.

How to do that? Even i need to load my footer also...Please help me out

I tried...My code is below

My .aspx code

<asp:TemplateField HeaderText="Products">
                  <EditItemTemplate>
                  <asp:DropDownList ID="txt_grd_ProdName" runat="server" Width="95px" AutoPostBack="True" onselectedindexchanged="txt_grd_ProdName_SelectedIndexChanged" ><asp:ListItem>-Select-</asp:ListItem> </asp:DropDownList>
                  </EditItemTemplate>
                 <ItemTemplate>
                         <%#Eval("Prod_name") %>
                  </ItemTemplate>
                <ItemStyle HorizontalAlign="Center" VerticalAlign="Middle" />
                <FooterTemplate>
                    <asp:DropDownList ID="Foot_Txt2" runat="server" Width="95px" AutoPostBack="True"><asp:ListItem>-Select-</asp:ListItem> </asp:DropDownList>
                </FooterTemplate>
                  </asp:TemplateField>


我的aspx.cs代码


My aspx.cs Code

protected void Grid_Purchase_RowDataBound(object sender, GridViewRowEventArgs e)
{
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
            
                DropDownList dropdown = (DropDownList)e.Row.Cells[1].FindControl("txt_grd_ProdName");
                DataTable dt = new DataTable();
                dt = SQLobj.SQL_Adapter("Select Prod_name from ProductDetails");
                dropdown.DataSource = dt;
                dropdown.DataBind();
           
        }
}

正确答案

#1
您好,

您可以将数据源绑定到网格的行数据绑定事件上....正如我所看到的,您也只需绑定源,同时定义datatext和datavalue列.

试试吧

谢谢
sanjeev.
Hello,

you can bind the data source on row data bound event of grid.... as i can see you are just binding the source define datatext and datavalue columns as well.

try it out

thanks
sanjeev.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhceakcg
系列文章
更多 icon
同类精品
更多 icon
继续加载