我遇到了DropDrown SelectedIndexChanged方法的问题,我编写了一个Asp.NET DropDown来根据所选选项填充文本框,但是在进入DropDown按钮之前页面需要经过几个进程,所以SelectedIndexChanged工作正常,它填充我的文本框,但是在填充文本框后,页面运行一个PostBack并刷新整个网站,所以,radionbuttons和我所做的所有选择都被删除,所以我需要填充它们重新检查并再次检查radionbuttons,填写其他文本框并从头开始我的表单,除此之外,页面加载,好像我重新开始。
HTML
<div class="form-group">
<label for="name" class="text-muted"><small><strong>Código del cliente:</strong></small></label>
<asp:DropDownList AutoPostBack="true" ID="ddClientCode" OnSelectedIndexChanged="ddClientCode_SelectedIndexChanged" runat="server" CssClass="form-control input-sm btn-box-tool"></asp:DropDownList>
</div>
<div class="form-group">
<label for="name" class="text-muted"><small><strong>Persona jurídica:</strong></small></label>
<asp:TextBox ID="TxtLegalPerson1" CssClass="form-control" runat="server" placeholder="Persona jurídica" />
</div>
背后的代码
#region Populate Textboxes Based On Selected Index Client
protected void ddClientCode_SelectedIndexChanged(object sender, EventArgs e)
{
string CLIENTE = ddClientCode.SelectedValue.ToString();
TxtLegalPerson1.Text = BindCedulaJuridica(CLIENTE);
}
#endregion
#region Bind [Cedula Juridica] based on ddClientCode
public string BindCedulaJuridica(string x)
{
string returnValue = string.Empty;
try
{
string constr = ConfigurationManager.ConnectionStrings["wiz"].ConnectionString;
using (IDbConnection connection = new SqlConnection(constr))
{
connection.Open();
using (IDbCommand command = connection.CreateCommand())
{
command.CommandText = "SELECT Column FROM TABLE AS A where Client= '" + x + "'";
using (IDataReader reader = command.ExecuteReader())
{
while (reader.Read())
{
returnValue = reader["Column"].ToString();
}
if (connection.State == ConnectionState.Open)
{
connection.Close();
}
return returnValue;
}
}
}
}
catch (Exception ex)
{
string err = ex.ToString();
}
return returnValue;
}
#endregion
页面加载
protected void Page_Load(object sender, EventArgs e)
{
#region User Validation
string Group = (string)(Session["Group"]);
switch (Group)
{
case "a":
//Response.Redirect("/Dashboard");//This is temporal
break;
case "b":
//Response.Redirect("/Dashboard");
break;
case "c":
Response.Write("<script>alert('¡Lo sentimos, usted no cuenta con privilegios para crear reportes!');</script>");
Response.Redirect("/Dashboard");
break;
case "d"://Check this name with the database
//Response.Redirect("/Dashboard");
break;
default:
break;
}
#endregion
if (!IsPostBack)
{
this.FillTypes();
this.FillStatationsDropDown();
this.FillVehiculeCode();
this.FillddOutAgency();
this.FillddInAgency();
this.FillCustomers();
}
}
有没有办法在不刷新页面的情况下填充我的文本框,并且无法丢失我填写的所有信息?
提前致谢。
答案 0 :(得分:0)
<强> 1 即可。导致此问题的第一件事是Page_Load
事件,在控件事件(如按钮单击或下拉列表更改)之后加载。可以使用您使用的if (!IsPostBack)
解决此问题。
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
//if you have some default value settings for the dropdown, write here.
}
}
<强> 2 即可。当您的页面回发时,您有一个新页面。使控件具有旧值的唯一因素是ViewState
。 ViewState是一个字符串,其中包含一些用于设置页面的数据。所有控件都从页面继承viewState启用/禁用。每个控件的ViewState可以单独设置。
我认为: ViewState包含下拉列表的Selected Value,因此如果下拉列表在不同索引中有重复值,则在页面加载后,它将是未知的真实选择索引。