ASP.NET 中的下拉列表问题

发布于 2024-12-09 11:20:54 字数 542 浏览 0 评论 0原文

我对下拉列表的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文