我有两个下拉列表ddlCountry和ddlState以及一个按钮提交
而ddlstate在更新面板中。
在数据库中提交两个下拉存储的按钮值
我在Repeater Control中显示数据。(在HTML表格结构中)
ASPX代码
<table id="tablelist" class="csstablelist" cellspacing="1" cellpadding="1">
<tr>
<td class="csstablelisttoptr">
ddlCountryID
</td>
<td class="csstablelisttoptr">
ddlCountryText
</td>
<td class="csstablelisttoptr">
ddlstateText
</td>
</tr>
<asp:Repeater ID="repeaterList" runat="server" OnItemDataBound="repeaterList_ItemDataBound">
<ItemTemplate>
<tr onclick="selectRow(this);">
<td class="csstablelisttd" style="display: none">
<asp:Label ID="ddlCountryID" runat="server" Text='<%#Eval("ddlCountryID")%>'></asp:Label>
</td>
<td class="csstablelisttd">
<asp:Label ID="ddlCountryText" runat="server" Text='<%#Eval("ddlCountryText")%>'></asp:Label>
</td>
<td class="csstablelisttd">
<asp:Label ID="ddlstateText" runat="server" Text='<%#Eval("ddlstateText")%>'></asp:Label>
</td>
</tr>
</ItemTemplate>
</asp:Repeater>
</table>
<asp:DropDownList ID="ddlCountry" runat="server" CssClass="csstextbox" Width="207px" AutoPostBack="true" OnSelectedIndexChanged="ddlCountry_SelectedIndexChanged">
</asp:DropDownList>
<asp:UpdatePanel ID="updatePanelState" runat="server">
<ContentTemplate>
<asp:DropDownList ID="ddlState " runat="server" CssClass="csstextbox" Width="177px">
</asp:DropDownList>
</ContentTemplate>
<Triggers>
<asp:AsyncPostBackTrigger ControlID="ddlCountry" EventName="SelectedIndexChanged" />
</Triggers>
</asp:UpdatePanel>
<asp:Button ID="btnSave" runat="server" Width="80px" OnClientClick="return validateForm();" Text="Save" CssClass="cssbutton" OnClick="btnSave_Click" />
ddlCountryID | ddlCountryText | ddlstateText
1 | USA | XYZ
2 |India | PQR
点击TR我在javascript中写下(SelectRow(this))函数,以便高亮显示转发器值和下拉值匹配并被选中。
<script type="text/javascript">
function selectRow(objTR)
{
var ddlCountry =document.getElementById('<%=ddlCountry.ClientID %>');
var ddlState =document.getElementById('<%=ddlState .ClientID %>');
for (i = 0; i < ddlCountry .options.length; i++)
{
if (ddlCountry .options[i].text == objTR.cells[1].innerText.trim())
break;
}
ddlCountry .options[i].selected = true;
__doPostBack(ddlCountry .id, objTR.cells[2].innerText.trim());
}
</script>
我在后面的代码中写了ddlCountry SelectedIndexChangedEvent。
来自Javascript我正在解雇__doPostBack()并将ddlCountry作为事件目标ddlStateText作为事件参数传递给SelectedIndexChangedEvent并在事件中获取值。
string stateDescription = Request["__EVENTARGUMENT"];
ddlState .Items.FindByText(stateDescription ).Selected = true;//for highliting the repeater value and dropdown value match and selected
页面上的绑定国家/地区
if(!Ispostback)
protected Void BindCountry()
{
strSQL = @"SELECT countryID,Country from Country_Master";
DataTable dataTableCountry = null;
dataTableCountry = objSqlDbComm.ExecuteDatasetQuery(strSQL).Tables[0];
int countryID;
string Country;
var dictioneryCountry = new Dictionary<int, string>();
foreach(DataRow dr in dataTableCountry.Rows)
{
countryID = Convert.ToInt32(dr["countryID"]);
Country= dr["Country"].ToString();
dictioneryCountry.Add(countryID,Country);
}
ddlCountry.Items.Clear();
ddlCountry.DataTextField = "Value";
ddlCountry.DataValueField = "Key";
ddlCountry.DataSource = dictioneryCountry;
ddlCountry.DataBind();
ddlCountry.Items.Insert(0, new ListItem("[Select]", "-1"));
ddlCountry.Items[0].Selected = true;
}
我的问题是,如果我有以下转发器数据。
ddlCountryID | ddlCountryText | ddlstateText
1 | USA | XYZ
2 |India | PQR
2 |India | MNO
当我选择具有国家印度和州mno的第3行时,__dopostback()方法就是火。
当我进入第1行时,__dopostback()方法就是火。
当我来自行nuber 1到3然后方法是火正确方式但是当从行nuber 3到2具有国家id相同__dopostback()方法不是火和状态不从ddlstate选择。
答案 0 :(得分:4)
如果您调试代码,您将看到__doPostBack()确实正在工作,因为正在执行Page_Load中的代码(尝试在此处设置断点以进行检查)。问题是DropDownList的索引没有改变,因此不会触发IndexChanged事件,并且ddlCountry_SelectedIndexChanged永远不会运行。当你调用__doPostBack()时,这与从代码隐藏中手动调用ddlCountry_SelectedIndexChanged不同。
除了设置此下拉列表值之外,您是否有特殊原因要回复邮件?
解决方案1
我建议删除__doPostBack()行并添加以下代码:
var state = objTR.cells[2].innerText.trim();
for (var i = 0; i < ddlState.options.length; i++)
{
if (ddlState.options[i].text == state)
{
ddlState.options[i].selected = true;
break;
}
}
解决方案2
或者,如果您真的需要回发,可以执行以下操作:
一个。在更新面板中添加隐藏按钮,如下所示:
<div style="display: none">
<asp:Button ID="btnState" OnClick="btnState_Click" runat="server" />
</div>
湾选择国家/地区后,请更改您的JavaScript以执行以下操作:
document.getElementById('__EVENTARGUMENT').value = objTR.cells[2].innerText.trim();
document.getElementById('<%= btnState.ClientID %>').click();
℃。创建一个FilterState()函数并从ddlcountry indexchanged事件
中调用它protected void ddlCountry_SelectedIndexChanged(object sender, EventArgs e)
{
FilterState();
}
private void FilterState()
{
// insert whatever filtering code you had here
}
d。添加你的btnState_Click函数(注意,如果已经选择了一个项目,你之前设置ddlState的选定项的方式会引发错误。):
protected void btnState_Click(object sender, EventArgs e)
{
FilterState();
string state = Request["__EVENTARGUMENT"];
if (state != "")
ddlState.SelectedValue = state;
}
解决方案3
第三个解决方案允许你仍然使用__doPostBack,并通过将它放在Page_Load函数中来完全取消SelectedIndexChanged事件:
if (IsPostBack && Request["__EVENTTARGET"] == ddlCountry.UniqueID)
{
FilterState();
string stateDescription = Request["__EVENTARGUMENT"];
if (stateDescription != "")
ddlState.SelectedValue = stateDescription;
}
另一方面,对于你的BindCountry函数,没有真正的理由使用Dictionary,你可以直接绑定DataTable:
strSQL = @"SELECT countryID,Country from Country_Master";
DataTable dataTableCountry = objSqlDbComm.ExecuteDatasetQuery(strSQL).Tables[0];
ddlCountry.Items.Clear();
ddlCountry.DataSource = dataTableCountry;
ddlCountry.DataTextField = "Country";
ddlCountry.DataValueField = "countryID";
ddlCountry.DataBind();
ddlCountry.Items.Insert(0, new ListItem("[Select]", "-1"));
ddlCountry.Items[0].Selected = true;
答案 1 :(得分:-1)
这可能是因为您没有为Text =“India”的下拉列表绑定单独的值,因此服务器无法识别该值已更改,因此未处理selectedindexchanged事件。
尝试为印度文本创建一个具有不同值的数据,或者只使用一个印度文本
我可以清楚地看到,在listview中有两个重复的reocords,印度有重复键(2)
不建议这样做。仅使用一个应具有唯一键的记录。
我可以理解你只有一个数据源,因此修改你的代码,以便在ddlCountry中添加项目时检查是否已经存在(如果存在)只是不要再添加它。替换Bindcontry代码中的followign代码,它应该可以正常工作。
foreach(DataRow dr in dataTableCountry.Rows)
{
countryID = Convert.ToInt32(dr["countryID"]);
Country= dr["Country"].ToString();
if ( ! dictioneryCountry.Contains(countryID))
{
dictioneryCountry.Add(countryID,Country);
}
}
让我知道它是否有效