目前我有一个下拉列表,其中包含自己的sqldatasource,它正在填充下拉列表。 ddl位于listviews中,它也位于sqldatasource上,插入项模板。 但是,当我们单击insert时,传递给dbase的值为null。
<InsertItemTemplate>
<tr style="">
<td>
<asp:Button ID="InsertButton" runat="server" CommandName="Insert"
Text="Insert" />
<asp:Button ID="CancelButton" runat="server" CommandName="Cancel"
Text="Clear" />
</td>
<td>
</td>
<td>
<asp:TextBox ID="td_t_idTextBox" runat="server" Text='<%# Bind("td_t_id") %>' Enabled="false" />
</td>
<td>
<asp:DropDownList ID="DropDownList2iit" runat="server" DataSourceID="SqlDataSource30"
DataTextField="document_name" DataValueField="document_id"
SelectedIndex='<%# Bind("td_docid") %>'>
</asp:DropDownList>
</td>
</tr>
</InsertItemTemplate>
我尝试在sqldatasource insertparameters中使用document_id和td_docid。
<InsertParameters>
<asp:Parameter Name="td_t_id" Type="Int32" />
<asp:Parameter Name="td_docid" Type="Int32" />
<asp:Parameter Name="document_id" Type="Int32" />
</InsertParameters>
然而,使用时这两个值都不会给我一个除null之外的实际值。这是一种常见现象吗?
更新:我最终使用oniteminserting来做一些魔术背后的代码
protected void ListView2_OnItemInserting(object sender, EventArgs e)
{
string sv = ((DropDownList)ListView2.InsertItem.FindControl("DropDownList2iit")).SelectedValue;
SqlDataSource31.InsertParameters.Add("document_id", sv);
}
它的工作原理应该如此。
答案 0 :(得分:0)
你可以尝试下面的声音。 (我100%肯定,但希望完全有效)
protected void ListView2_OnItemInserting(object sender, EventArgs e)
{
string sv = ((DropDownList)e.Item.FindControl("DropDownList2iit")).SelectedValue;
SqlDataSource31.InsertParameters.Add("document_id", sv);
}
答案 1 :(得分:0)
这个问题已经很久了,但可能有所帮助。
您将下拉列表的值绑定到selectedindex属性。它应该绑定到SelectedValue。不需要为此编写代码..
替换:
SelectedIndex='<%# Bind("td_docid") %>'>
与
SelectedValue= '<%# Bind("td_docid") %>'