如何在asp中重新加载页面?
我的 asp 页面中有 2 个下拉列表框,我需要在其中选择类别和子类别。
将根据类别下拉列表框的选择填充子类别下拉列表。
问题是当我在类别列表框中选择一个项目时,子类别列表框没有相应加载。
因此,我将转到上一页并单击按钮获取当前页面(类别和子类别列表框所在的位置)并选择子类别详细信息(现在子类别列表框已加载)。
有没有办法留在当前页面并加载子类别列表框以供第一次选择。 请任何人帮忙..
I have 2 dropdown list boxes in my asp page where I need to select category and sub-category.
Sub-category dropdown list will be populated based on the category dropdown list box selection.
The problem is the sub-category list box is not loading accordingly when i select an item in category list box.
So I am going to previous page and click on the button to get the current page(where cateory & sub category list boxes are located) and selecting the sub category details(now sub category list box got loaded).
Is there any way to stay on the current page and get the sub category list box loaded for selection at first time itself.
Please any one help..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置 AutoPostBack=true 并在类别 dropDown 处处理 ChangeItem 事件。
Set AutoPostBack=true and handle ChangeItem event at category dropDown.
@Kanchana:这应该可以帮助您开始 - http://www.satya-weblog.com/2009/08/jquery-ajax-example-of-select-values.html
@Kanchana: This should help get you started -- http://www.satya-weblog.com/2009/08/jquery-ajax-example-of-select-values.html