我目前在 ASP.NET 中有一个 DetailsView,它根据通过 QueryString 传递的 ID 从数据库中获取数据。我现在一直在尝试做的是在用户单击 ButtonField 或 HyperLinkField 时创建的新 cookie 中使用相同的 ID。
我在 .aspx 中的内容是:
<asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False" DataKeyNames="ArtID"
DataSourceID="AccessDataSource1" Height="50px" Width="125px">
<Fields>
<asp:ImageField DataAlternateTextField="Title" DataImageUrlField="FileLocation">
</asp:ImageField>
<asp:BoundField DataField="ArtID" HeaderText="ArtID" InsertVisible="False" ReadOnly="True"
SortExpression="ArtID" />
<asp:BoundField DataField="Title" HeaderText="Title" SortExpression="Title" />
<asp:BoundField DataField="ArtDate" HeaderText="ArtDate" SortExpression="ArtDate" />
<asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" />
<asp:BoundField DataField="FileLocation" HeaderText="FileLocation" SortExpression="FileLocation" />
<asp:BoundField DataField="Medium" HeaderText="Medium" SortExpression="Medium" />
<asp:BoundField DataField="Location" HeaderText="Location" SortExpression="Location" />
<asp:BoundField DataField="PageViews" HeaderText="PageViews" SortExpression="PageViews" />
<asp:HyperLinkField DataNavigateUrlFields="ArtID" DataNavigateUrlFormatString="Purchase.aspx?ArtID={0}"
NavigateUrl="Purchase.aspx" Text="Add To Cart" />
<asp:ButtonField ButtonType="Button" DataTextField="ArtID" Text="Add to Cart" CommandName="btnAddToCart_Click" />
</Fields>
</asp:DetailsView>
当使用调节器 asp.net 按钮时,例如:
<asp:Button ID="btnAddArt" runat="server" Text="Add To Cart" />
我会在VB中有这样的东西:
Protected Sub btnAddArt_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAddArt.Click
Dim CartArtID As New HttpCookie("CartArtID")
CartArtID.Value = ArtID.DataField
CartArtID.Expires = Date.Today.AddDays(0.5)
Response.Cookies.Add(CartArtID)
Response.Redirect("Purchase.aspx")
End Sub
但是,我不知道如何将它应用到 ButtonField,因为 ButtonField 不允许我给它一个 ID。
我需要添加到 cookie 中的 ID 是第一个 BoundField 中的 ArtID。
非常感谢任何关于我将如何去做的想法/建议!
或者,如果我可以使用 HyperLinkField 或常规按钮执行此操作,那将同样好,但我无法使用常规按钮访问 DetailsView 中的 ID。
谢谢