我有一个 shopping_cart.aspx.cs 文件,还有一个类文件 spcart.cs,
购物车.aspx.cs
public partial class Ui_ShoppingCart : System.Web.UI.Page
{
public int tax = 0;
public int subtotal = 0;
public int granttotal = 0;
protected void Page_Load(object sender, EventArgs e)
{
-------------------------/////some code
}
--------------------------------/////some code
}
spcart.cs
public class Spcart
{
public void updatecart(int pid,int qty)
{
---------/////some code
}
}
现在我想在class Ui_ShoppingCart
类 Spcart 的变量 tax、subtoal 和 granttotals 中设置一些值,所以我尝试过-->
Ui_ShoppingCart.tax
但它没有工作............
有没有其他方法来设置这些变量???
谁能帮我解决这个问题???