0

我有使用 href 导航到下一页的图像:

<a class="ajaxcolorbox" href="User.aspx">

现在我还想传递一些值,以便我可以根据用户单击的图像显示一些信息。

4

2 回答 2

1

使用查询字符串。

<a class="ajaxcolorbox" href="User.aspx?id=<YOUR_ID>">

这是传递数据的最简单方法。

您可以在 User.aspx 上读取它,如下所示:

var id = Request.QueryString["id"];
于 2012-09-18T10:45:30.280 回答
0

Use QueryString as Id

User.aspx?imageId=value

and read it from the next page

于 2012-09-18T10:46:24.590 回答