我试图在asp.net超链接中发送查询字符串我不确定它是否可能?我循环通过一个集合,我想包含集合中每个对象的ID。错误即时获取是p在当前上下文中不存在。这是我的代码
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div class="container" style="margin-top:50px;">
<asp:Label ID="label1" runat="server"></asp:Label>
<div class="jumbotron" style="margin:100px;width:900px">
<% foreach (var p in products)
{
%> <!-- loop through the list -->
<ul style="display:inline-block;width:250px;height:300px;list-style-type:none;border-style:solid">
<li ">
<p><%= p.ProductName %></p>
<p>€<%= p.Price %></p>
<img src="<%= p.MainProductImage %>" width="150";height="150";/>
<br />
<asp:HyperLink ID="details" runat="server" Text="Details" NavigateUrl='<%#string.Format("ProductDetails.aspx?ProductID={0}", p.ProductID);%>' />
</li>
</ul>
<%
}
%>
</div>
</div>
答案 0 :(得分:-1)
而不是<asp:HyperLink>
使用
<a href='<%=string.Format("ProductDetails.aspx?ProductID={0}", p.ProductID);%>' alt="Details" >Details</a>