共通クラス ファイルcommon.cs : このファイルは、 add- >new items-> classをクリックして追加しました
public class common
{
public int v,n;
public int da()
{
return n= v;
}
}
別のファイル: Web ページのファイル名はa1.aspx.cs です。
common c = new common();
c.v = Convert.ToInt32(TextBox1.Text);
c.da();
Response.Redirect("ulogin.aspx");
テキスト ボックスの値は cv 変数に格納されます
だから、今、ulogin.aspx.csという名前の別のWebページファイルのtextbox1.textで指定された値が必要です
私はこのコードを使用しました:
common d=new common();
d.da();
Label1.Text = Convert.ToString(d.n);
しかし、実行後、値は0として表示されます.....