在 GridView 中编辑一行时,我需要一个 DropDownList,其可用值列表取决于该行中的其他列(现在我们只说记录的“类型”);也就是说,将根据正在编辑的行列出不同的选项。
我通过在 GridView 中添加一个原本不需要的 DataKeyName 来实现它的工作,但这在其他地方引起了我的悲痛,无论如何它感觉太迂回了,所以我正在寻找一种更好的方法。这是我目前的做法:
在 .aspx 文件中:
<asp:GridView ID="gvDct" ... DataKeyNames="dctId,dctType" ... >
...
<asp:TemplateField>
...
<EditItemTemplate>
<asp:DropDownList ID="ddlDctParent" runat="server"
DataSourceId="sdsDctParent"
DataValueField="dctId" DataTextField="dctFullPath"
SelectedValue='<%# Bind("dctParentId") %>'
... >
</asp:DropDownList>
<asp:SqlDataSource ID="sdsDctParent" runat="server"
ConnectionString="<%$ ConnectionStrings:ConnectionString %>"
OnSelecting="sdsDctParent_Selecting"
SelectCommand="SELECT dctId, dctFullPath FROM lkpDocCatAndType
WHERE dctType=@dctType">
<SelectParameters>
<asp:Parameter Name="dctType" />
</SelectParameters>
</asp:SqlDataSource>
</EditItemTemplate>
</asp:TemplateField>
...
</asp:GridView>
我希望 SelectParameter 成为具有 ControlID="gvDct" 和 PropertyName="SelectedDataKey.Values[dctType]" 的 ControlParameter,但由于未知原因不起作用(参数值为空),所以我将此位添加到.vb 代码隐藏文件以填充 DropDownList 的数据源的行特定参数:
Protected Sub sdsDctParent_Selecting(ByVal sender As Object, _
ByVal e As System.Web.UI.WebControls.SqlDataSourceSelectingEventArgs)
e.Command.Parameters(0).Value = gvDct.DataKeys(gvDct.EditIndex).Item(1)
End Sub
因此,当我开始在 GridView 中编辑一行时,DropDownList 被绑定,这会导致 SqlDataSource SelectCommand 执行,这会触发 OnSelecting 代码,在该代码中我从正在编辑的行 (EditIndex) 中提供参数值,以便获得适当的DropDownList 中的值的总体。
有没有更好的办法?对我来说最重要的方面是避免添加 DataKeyName,因为这会导致我用于从 GridView 中删除一行的存储过程出现参数过多的问题。