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.
我有使用 href 导航到下一页的图像:
<a class="ajaxcolorbox" href="User.aspx">
现在我还想传递一些值,以便我可以根据用户单击的图像显示一些信息。
使用查询字符串。
<a class="ajaxcolorbox" href="User.aspx?id=<YOUR_ID>">
这是传递数据的最简单方法。
您可以在 User.aspx 上读取它,如下所示:
var id = Request.QueryString["id"];
Use QueryString as Id
User.aspx?imageId=value
and read it from the next page