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.
我在 page1 中有 2 个单选按钮如何在 page2 中使用此方法( PreviousPage.FindControl )以便了解第 1 页中选择了哪个单选按钮
最好使用以下机制将数据从页面传输到另一个页面:
客户端存储机制:
服务器端存储机制:
例如,在第一页中,您选择单选按钮并单击按钮或链接按钮,在 button_click 事件中您找到选定的单选按钮,并将选定的数据放入查询字符串变量中,然后重定向到第二页:
Response.Redirect("~/secondPage.aspx?var=" + data)
在第二页阅读查询字符串:
Request.QueryString["var"]