使用下面的代码,当我单击编辑按钮时,gridview 下拉列表中的选择值被保留,同时保留下拉列表的其余值,以便用户可以选择不同的值。
Protected Sub RowDataBound(ByVal sender As Object, ByVal e As GridViewRowEventArgs)
If e.Row.RowType = DataControlRowType.DataRow AndAlso gvCustomers.EditIndex = e.Row.RowIndex Then
Dim ddlRoles As DropDownList = DirectCast(e.Row.FindControl("ddlRoles"), DropDownList)
Dim query As String = "select RoleId, Roles from ROLES"
Dim cmd As New SqlCommand(query)
ddlRoles.DataSource = GetData(cmd)
ddlRoles.DataTextField = "Roles"
ddlRoles.DataValueField = "RoleId"
ddlRoles.DataBind()
ddlRoles.Items.FindByValue(TryCast(e.Row.FindControl("lblUserRole"), Label).Text).Selected = True
End If
End Sub
'//标记:
<asp:Label ID="lblUserRole" runat="server" Text='<%# Eval("RoleId")%>' Visible = "false"></asp:Label>
<asp:DropDownList ID = "ddlRoles" runat = "server">
</asp:DropDownList>
这些适用于gridview。
但是,我想将代码隐藏更改为常规 Web 表单,以便更好地操作布局。
换句话说,我有这样的布局:
名字:_ __ _ __ _ __ _ ___
姓氏:_ __ _ __ _ __ _ ____
角色:_ __ _ __ _ __ _ __ _ ___
我的理解是,在gridview中,布局是垂直的,不灵活。
我们希望我们的布局是水平的。
预先感谢您的帮助