10、PreviousPageType指令
PreviousPageType指令是ASP.NET 2.0跨页面回送机制的一部分,允许你指定来源页面的虚拟路径,以便强类型访问来源页面。正常情况下,发送的数据可通过PreviousPage属性和FindControl方法访问,但使用强类型的PreviousPageType指令允许你访问公共属性,而不需要调用FindControl方法。
例如,假设你有一个页面叫做firstpage.aspx,它有一个公共属性FirstProperty,现在在你的第二个页面(secondpage.aspx)中,可以添加下面的代码:
- [pre]
- <%@ PreviousPageType VirtualPath=
- " firstpage.aspx"
- %>" firstpage.aspx"
- %>" firstpage.aspx"
- %>
- [/pre]然后调用第一个页面的属性
- [pre]
- var firstPageProperty = PreviousPage.FirstProperty;
- [/pre]
ASP.NET控件的种类是非常多的,而各个控件属性又是不完全一样的。 通过本文的分析,相信你对这10个属性已经有了更深一步的了解。
原文链接:http://www.cnblogs.com/qiuweiguo/archive/2011/08/03/2126584.html