A.aspx.cs
------------------------------------------------------------
public partial class A : System.Web.UI.Page
{
public string strTest { get { return "123"; } }
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Server.Transfer("test2.aspx");
}
}
B.aspx.cs
------------------------------------------------------------------------
public partial class B: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
A a = (A)Context.Handler;
Response.Write(a.strTest);
}
}
---------------------------------------------------------------------
출처 : http://hoons.kr/Board.aspx?Name=QAASPNET&Mode=2&BoardIdx=14931&Key=&Value=
------------------------------------------------------------
public partial class A : System.Web.UI.Page
{
public string strTest { get { return "123"; } }
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Server.Transfer("test2.aspx");
}
}
B.aspx.cs
------------------------------------------------------------------------
public partial class B: System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
A a = (A)Context.Handler;
Response.Write(a.strTest);
}
}
---------------------------------------------------------------------
출처 : http://hoons.kr/Board.aspx?Name=QAASPNET&Mode=2&BoardIdx=14931&Key=&Value=
'소프트웨어 > C# & ASP.NET' 카테고리의 다른 글
C#으로 이미지 리사이즈/조작 시 부드럽게 렌더링 하기 (0) | 2008.09.04 |
---|---|
ASP.NET 2개 폼 사용하는 꽁수 (0) | 2008.08.28 |
숫자 -> 한글 표기 ( Microsoft Visual Studio International Pack 1.0 ) (0) | 2008.08.28 |
웹서비스 .net compact framework 2,0 사용시 웹참조 동적으로 하기 (0) | 2008.08.27 |
닷넷 가비지 컬렉터의 동작원리 (0) | 2008.08.20 |