HttpContext.Current.Response.Write("hello");
HttpContext.Current.Response.End();
在APP_CODE文件夹的类里面,输出内容到页面。通过这个你应该知道怎么去获取页面中的内容吧HttpContext.Current相当于是this
一个index页面分成三个部分,一个是html页面如index.aspx,一个是类index.aspx.cs,一个是控件声明类index.desinger.cs,这就是说 index.aspx.cs本身就是一个类,你传入其它页面中没有问题,你要访问index的控件的话,必须html控件是服务器控件可行。
this.Page