-2

我们可以使用会话、查询字符串等将值从 aspx 传递到 aspx 文件。但是我想将值从 aspx 传递到 class.cs 文件。在 class.cs 文件中,我想获取该值。如何获得价值。有谁能够帮助我。预先感谢。

4

1 回答 1

1

在 aspx.cs 中

 decimal Total=textbox1.Text+textbox2.Text

在班上

class sample
{
 Public void Display(decimal total)
 {
 }
 }

将总计传递给类方法,将其写在 aspx.cs 文件中的第一条语句之后

 new sample().Display(Total) 
于 2013-02-05T19:23:55.390 回答