【发布时间】:2023-03-30 11:16:01
【问题描述】:
我的问题是在 Gridview_RowEditing 事件之后我无法在 gridview 中保留该项目。
<asp:TemplateField HeaderStyle-CssClass="gridHeading" HeaderText="Get Alerts By SMS"
ItemStyle-CssClass="gridValue" ItemStyle-HorizontalAlign="Center">
<ItemTemplate>
<asp:Label ID="lblAlertBySMSGeofence" runat="server" Text=' <%# (Convert.ToBoolean(Convert.ToInt32(Eval("alertBySMS")))) ? "Yes" : "No" %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<asp:DropDownList ID="ddlAlertBySMSGeofence" runat="server" AppendDataBoundItems="true"
CssClass="gridValue">
<asp:ListItem Text="Yes" Value="1"/>
<asp:ListItem Text="No" Value="0" />
</asp:DropDownList>
</EditItemTemplate>
<HeaderStyle CssClass="gridHeading" />
<ItemStyle CssClass="gridValue" HorizontalAlign="Center" />
</asp:TemplateField>
编辑
protected void grdGeofence_RowEditing(object sender, GridViewEditEventArgs e)
{
GridViewRow row = (GridViewRow)grdGeofence.Rows[e.NewEditIndex];
grdGeofence.EditIndex = e.NewEditIndex;
List<COMMONGeofenceAlert> geofenceData = new BLsmsalertdetail().getGeofencealertDetail(Session["sessaccountid"].ToString(), txtdeviceID.Text);
for (int y = 0; y < geofenceData.Count; y++)
{
geofenceData[y].vehicleNumber = ddlVehicleNumber.SelectedItem.Text;
}
grdGeofence.DataSource = geofenceData;
grdGeofence.DataBind();
}
protected void grdGeofence_RowUpdating(object sender, GridViewUpdateEventArgs e)
{
GridViewRow row = (GridViewRow)grdGeofence.Rows[e.RowIndex];
string id = grdGeofence.DataKeys[e.RowIndex].Value.ToString();
Label lblVehicle = (Label)row.FindControl("lblVehicleGeofence");
TextBox mobileNumber = (TextBox)row.FindControl("txtMobileGeofence");
TextBox EmailID = (TextBox)row.FindControl("txtEmailGeofence");
DropDownList ddlAlertBySMS = (DropDownList)row.FindControl("ddlAlertBySMSGeofence");
DropDownList ddlAlertbyEmail = (DropDownList)row.FindControl("ddlAlertByeEmailGeofence");
DropDownList AlertAtGeofenceEnter = (DropDownList)row.FindControl("ddlAlertGeofenceEnter");
DropDownList alertAtGeofenceExit = (DropDownList)row.FindControl("ddlAlertGeofenceExit");
DropDownList ddlAddress = (DropDownList)row.FindControl("ddlGeofenceAddressGrid");
BLsmsalertdetail detail = new BLsmsalertdetail();
int i = updateGeofence(id, mobileNumber.Text, EmailID.Text, ddlAlertBySMS.SelectedItem.Value, ddlAlertbyEmail.SelectedItem.Value, AlertAtGeofenceEnter.SelectedItem.Value, alertAtGeofenceExit.SelectedItem.Value, ddlAddress.SelectedItem.Text);
if (i == 1)
{
ScriptManager.RegisterClientScriptBlock(this.Page, typeof(Page), Guid.NewGuid().ToString(), "alert('Success!!')", true);
}
else
{
ScriptManager.RegisterClientScriptBlock(this.Page, typeof(Page), Guid.NewGuid().ToString(), "alert('Error!! Could not Update the value.')", true);
}
grdGeofence.EditIndex = -1;
List<COMMONGeofenceAlert> geofenceData = new BLsmsalertdetail().getGeofencealertDetail(Session["sessaccountid"].ToString(), txtdeviceID.Text);
for (int y = 0; y < geofenceData.Count; y++)
{
geofenceData[y].vehicleNumber = ddlVehicleNumber.SelectedItem.Text;
}
grdGeofence.DataSource = geofenceData;
grdGeofence.DataBind();
}
protected void grdGeofence_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (grdGeofence.EditIndex == e.Row.RowIndex && e.Row.RowType == DataControlRowType.DataRow)
{
DropDownList ddlAddress = (DropDownList)e.Row.Cells[0].FindControl("ddlGeofenceAddressGrid");
List<COMMONsmsalertdetail> getSmsDispatcherData = new BLsmsalertdetail().getSMSalertDetail(Session["sessaccountid"].ToString());
for (int i = 0; i < getSmsDispatcherData.Count; i++)
{
ddlAddress.Items.Add(new ListItem(getSmsDispatcherData[i].place, getSmsDispatcherData[i].place));
}
//ddlAddress.DataSource = getSmsDispatcherData;
//ddlAddress.DataTextField = "place";
//ddlAddress.DataValueField = "place";
//ddlAddress.DataBind();
}
}
数据库根据情况返回 0/1,我使用布尔表达式将其转换为 Yes 和 No。
我想将"lblAlertBySMSGeofence" 的值保留为下拉列表"ddlAlertBySMSGeofence" 的选定文本
我见过许多网站的许多解决方案,包括 SO。但是这个方法太长了,也不符合我的情况。 我有大约 100 个下拉列表,我无法一次又一次地重写代码..
有没有更简单的方法?
【问题讨论】:
-
在行数据绑定上你可以做到....但是如果在前端更改比你启用 ddl 的 AutoPostback True 并再次绑定网格视图
-
我能做到吗?在行编辑..标签丢失我无法检索它的值..
-
尝试在gridview的
RowDataBound事件中设置下拉菜单的值。 -
@techdo 对于每个下拉菜单.. 我的意思是 100 个下拉菜单?
-
为什么在事件
grdGeofence_RowEditing中完成gridview绑定?有必要吗?