问题描述
在class1.cs中有这样一个:publicstringuser(){stringd="dfgrtttyyttyyyyyyyy";returnd;}然后我想在WebForm1.aspx.cs中调用user()里的值,但是取过来的值(Label1.Text)为空,不明白,所以想请各位帮我看一下,谢谢!以下就是我在WebForm1.aspx.cs中的语句Class1Hover=newClass1();Label1.Text=Hover.user();不知道我这种调用方法对不对.
解决方案
解决方案二:
看看有没有if(!IsPostBack){}
解决方案三:
if(!IsPostBack)
解决方案四:
应该是回传
时间: 2024-09-17 22:01:26