Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的页面中有 7 个下拉列表,在从下拉列表 1 发回之后,我希望在页面重新加载时仍然突出显示,以便我能够切换到下一个下拉列表
我尝试过智能导航,但这不起作用。我正在使用框架 3
任何指导将不胜感激
谢谢
您可以使用该focus()方法
focus()
例如在代码隐藏中:
DropDownList1.Focus();
这将重点放在 DropDownList1
或者,您可以使用
Page.SetFocus("IdOfControl");
您需要将控件的 ID 存储在会话或查询字符串中,以便您可以在回发后访问它,以便知道要关注哪个控件。