-1

正如标题所说,我有一个简单的 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>
    &nbsp;<asp:Button ID="Button2" runat="server" onclick="Button2_Click" 
        Text="Dodaj artikel" Width="143px" />
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <asp:Button ID="Button3" runat="server" Text="Remove" />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    <asp:Label ID="Label1" runat="server" Text="Total price:"></asp:Label>
&nbsp;<asp:Label ID="Label2" runat="server" Text="Label"></asp:Label>
    </form>
</body>
</html>
4

1 回答 1

0

您需要使用 Web 服务与服务器 + ajax 进行通信。Javascript 不能单独做到这一点,因为它在客户端浏览器中运行。

有许多指南、文档、教程等可以更深入地解释这个问题。有多种方法可以做到这一点,您只需选择最适合您的情况和技能的方法。

这是关于asp.net http://www.asp.net/web-forms/videos/how-do-i/how-do-i-create-and-call-a-simple-中的Web服务的视频教程web-service-in-aspnet

于 2013-03-10T16:00:33.197 回答