- //页面CreateFilePath.aspx.cs
- public partial class CreateFilePath : System.Web.UI.Page
- {
- //要传给Default.aspx页面的值
- public string Name
- {
- get { return "ffff" ; }
- }
- protected void Page_Load( object sender, EventArgs e)
- {
- //终止当前页面,使用指定路径执行一个新页面
- Server.Transfer("Default.aspx" );
- }
- }
- //页面Default.aspx.cs
- public partial class _Default : System.Web.UI.Page
- {
- protected void Page_Load( object sender, EventArgs e)
- {
- //获取负责处理次HTTP请求的对象,转化为CreateFilePath类实例
- CreateFilePath d = Context.Handler as CreateFilePath;
- //获取值
- Response.Write(d.Name);
- }
- }