ASP.NET 中的下拉列表问题
我对下拉列表的 SelectedIndexChanged 事件有疑问, 在页面加载时,我正在检查 id 并在下拉列表中选择该项目。 现在在下拉列表的 SelectedIndexChanged 上,当我尝试打印 dropdownlist.SelectedValue 时,它返回我空白值,我猜页面上加载的内容是下拉列表默认值选择的值让我很困惑,但这仍然是必需的。
下面是我的页面加载代码:-
if (!IsPostBack)
{
ListItem item = ddlslideslist.Items.FindByValue(bl.SlideShowId.ToString());
if (item != null) item.Selected = true;
}
下面是 SelectedIndexChanged 事件下的代码。
Response.Write(ddlslideslist.SelectedValue);
i have a problem with the SelectedIndexChanged event of dropdownlist,
on the page load i am checking for the id and make that item selected in the dropdownlist.
now on the SelectedIndexChanged of the dropdownlist, when i try the print, dropdownlist.SelectedValue, it returns me blank value, i guess the thing on the page load for the dropdownlist defautl selected value is messing me up, but still that is required.
Below is my Page Load Code:-
if (!IsPostBack)
{
ListItem item = ddlslideslist.Items.FindByValue(bl.SlideShowId.ToString());
if (item != null) item.Selected = true;
}
and below is the code under SelectedIndexChanged Event.
Response.Write(ddlslideslist.SelectedValue);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论