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.
如何在单击按钮时导航到 Web 表单?
我有一个包含用户信息的数据网格。当用户单击一行时,我想在同一母版页内容占位符中打开一个 asp.net 网络表单。
有什么建议吗?
Response.Redirect("secondpage.aspx")。这将重定向到该页面。将行号、id 等保存在会话状态中,如 Session["rowid"] = 1 或作为查询字符串发送,如 secondpage.aspx?rowid=23。您需要保存行信息并从第二页获取该 rowid 并加载该行的信息。
在按钮标签内: PostBackUrl="~/TargetPage.aspx"