我只想在更改我的组合框选择值后重新加载我的 asp.net 网页。所以我做了
protected void MyComboBox_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Redirect(Request.RawUrl);
}
我使用 Response.Redirect(Request.RawUrl) 根据
How do I refresh the page in ASP.NET? (Let it reload itself by code)
但是当我更改组合页面中的选择时,不会重新加载。
为什么,怎么做?
最佳答案
确保您已经在控件本身上定义了 SelectedIndexChanged
事件。
编辑: 也在控件上启用 AutoPostback
,就像 Abe Miessler 指出的那样。
AutoPostBack="true"
OnSelectedIndexChanged="MyComboBox_SelectedIndexChanged"
关于ASP.NET Response.Redirect(Request.RawUrl) 不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12737240/