我在ListView的每一行都有一个ListView和DropDownList。您可以在该DropDownlist中使用指定人员(DropDownList显示来自MySql数据库的数据)。
更改人员时,我需要做一些数据库操作。为此,我需要知道哪个人更改了ListView Row,我需要知道该条目的值。
这是我的aspx文件:
<asp:ListView ID="manageAssigneesListView" runat="server" DataKeyNames="" OnItemDataBound="OnDataBound">
<ItemTemplate>
<div class="summaryRow">
<asp:Label ID="customerId" runat="server"><%# Eval("customerId") %> </asp:Label>
<div style="width:200px; margin: 0px 5px; float: left;"><%# Eval("lastName") %>, <%# Eval("firstName") %></div>
<div style="width:120px; margin: 0px 2px; float: left;">Nr.</div>
<div style="width:200px; margin-left: 50px; float: right;">
<asp:DropDownList runat="server" ID="selectAssignee" Width="196" AppendDataBoundItems="true" OnSelectedIndexChanged="selectAssignee_OnSelectedIndexChanged" AutoPostBack="true">
</asp:DropDownList>
</div>
<div class="clear"></div>
</div>
</ItemTemplate>
</asp:ListView>
这是我的代码隐藏:
protected void Page_Load(object sender, EventArgs e)
{
Helper.doAuth(Session, Response);
if (!IsPostBack)
{
// load all customers without assignee
MySqlCommand cmd = new MySqlCommand();
MySqlConnection con = new MySqlConnection();
con.ConnectionString = Helper.CONNECTION_STRING;
cmd.CommandText = "SELECT customerId, lastName, firstName, assignee FROM customer WHERE assignee IS NULL ORDER BY customerId DESC";
cmd.Connection = con;
con.Open();
MySqlDataAdapter sda = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
sda.Fill(ds);
manageAssigneesListView.DataSource = ds;
manageAssigneesListView.DataBind();
con.Close();
}
}
protected void OnDataBound(object sender, ListViewItemEventArgs e)
{
DropDownList selectAssignee = (e.Item.FindControl("selectAssignee") as DropDownList);
MySqlCommand cmd = new MySqlCommand();
MySqlConnection con = new MySqlConnection();
con.ConnectionString = Helper.CONNECTION_STRING;
cmd.CommandText = "SELECT * FROM user where role = " + Helper.ROLE_SALESPERSON;
cmd.Connection = con;
con.Open();
MySqlDataAdapter sda = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
sda.Fill(ds);
selectAssignee.DataSource = ds;
selectAssignee.DataTextField = "emailAdress";
selectAssignee.DataBind();
con.Close();
}
protected void selectAssignee_OnSelectedIndexChanged(object sender, EventArgs e)
{
DropDownList dropDownList = (DropDownList)sender;
ListViewItem listView = (ListViewItem)dropDownList.NamingContainer;
var test = listView.DataItem;
string test2 = listView.FindControl("customerId").ToString();
int rowIndex = (int)listView.DataItemIndex;
Label lblMessage = (Label)listView.FindControl("customerId");
}
我成功获取Row的DataItemIndex我更改了DropDownList的值,DropDownlist也正在触发onSelectedIndexChanged,但我需要的是Label“customerId”的值,我不知道如何获取这个值。
提前致谢
答案 0 :(得分:3)
您需要使用FindControl
来获取对Label
的引用,然后使用它的Text属性:
ListViewItem item = (ListViewItem)dropDownList.NamingContainer;
Label lbltCustomerID = (Label) item.FindControl("customerId");
string customerID = lblCustomerID.Text;
顺便说一句,ListViewItem.DataItem
在回发时总是null
。
修改强>:
您应该设置标签的Text
,而不是
<asp:Label ID="customerId" runat="server">
<%# Eval("customerId") %>
</asp:Label>
此
<asp:Label ID="customerId" runat="server"
Text='<%# Eval("customerId") %>' >
</asp:Label>
答案 1 :(得分:1)
尝试直接从ListView获取标签的值,如
DropDownList dropDownList = (DropDownList)sender;
ListViewItem listView = (ListViewItem)dropDownList.NamingContainer;
var test = listView.DataItem;
string test2 = listView.FindControl("customerId").ToString();
int rowIndex = (int)listView.DataItemIndex;
Label label = (Label)manageAssigneesListView.Items[rowIndex ].Controls[0];
或
Label label = (Label)manageAssigneesListView.Items[rowIndex].FindControl("customerId");
并确保ListView不会每次都在回发时绑定
就像在PageLoad上加载的ListView不要忘记将其添加到:
if (!IsPostBack)
{
//Load ListView
}
答案 2 :(得分:1)
即使它得到了解答,我的解决方案对我来说也很有用:
protected void myDdl_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList dropDownList = (DropDownList)sender;
ListViewDataItem listView = (ListViewDataItem)dropDownList.NamingContainer;
int rowIndex = listView.DataItemIndex;
//Some logic
}
不是我使用Peasmaker解决方案的ListViewDataItem instread