正如标题所说,我有一个简单的 5column/5rows GridView,它代表 asp.net 中的购物车。我需要使用 javascript 来删除选定的行和按钮单击时的所有行。那怎么可能呢?当一个项目被移除时,总价格也应该改变。提前谢谢。
这是示例 aspx 代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Kosarica.aspx.cs" Inherits="Spletna_kosarica_2.Kosarica" EnableSessionState="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h2>Kosarica:</h2>
<p>
<asp:GridView ID="GridView1" runat="server" Width="440px"
AutoGenerateSelectButton="True">
</asp:GridView>
</p></div>
<asp:Button ID="Button2" runat="server" onclick="Button2_Click"
Text="Dodaj artikel" Width="143px" />
<asp:Button ID="Button3" runat="server" Text="Remove" />
<asp:Label ID="Label1" runat="server" Text="Total price:"></asp:Label>
<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>