当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > .net 里面 protected private 的变量也可以访问(新发现)。

ASP.NET
运行时修改Web.config中的元素值
优秀的Architect之路(入门)
提问的智慧(HowToAskQuestionsTheSmartWay)
C#数据结构篇(3队列类)
现在就可下载WTL7.0和.NETSP1
在.NET中开发组件
使用.NET远程处理访问其他应用程序域中的对象
使用ADO.NET访问数据库
承载.NET公共语言运行库
在.NET运行时了解类型信息(2)
在.NET运行时了解类型信息(3)
智能客户端(SmartClient)
获取数据库表结构
Visual Studio 2005 分包下载
为DataGrid中的行增加序号
关于HttpContext的Items属性
[推荐].NET XML Best Practices - Choosing an XML API
在 XML Schema和WSDL中使用名称空间
在论坛里为什么不能发问题
AspectSharp例子分析

ASP.NET 中的 .net 里面 protected private 的变量也可以访问(新发现)。


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 56 ::
收藏到网摘: n/a


通过 原数据可以访问,我是访问后,才发现自己怎么都操作私有字段了呢
参考代码
public class L3Data : System.ComponentModel.Component { private System.ComponentModel.Container components = null; private Page _page; private ArrayList LiteralList = new ArrayList(); public L3Data(System.ComponentModel.IContainer container) { container.Add(this); InitializeComponent(); }
public L3Data() { InitializeComponent(); } protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); } #region 组件设计器生成的代码 private void InitializeComponent() { components = new System.ComponentModel.Container(); } #endregion #region Property public Page Page { get{return this._page;} set { this._page = value; Type type = _page.GetType(); type = type.BaseType; System.Web.UI.WebControls.Literal literal = new Literal(); System.Reflection.FieldInfo[] fields = type.GetFields(BindingFlags.NonPublic|(BindingFlags.Static | BindingFlags.Instance)); foreach(System.Reflection.FieldInfo field in fields) { if(field.FieldType.Equals(literal.GetType())) this.LiteralList.Add(field); } int count =0; foreach(FieldInfo field in this.LiteralList) { count++; object obj = field.GetValue(this.Page); literal = (Literal)obj; if(literal.Text.Equals("wx")) literal.Text ="I can see you"; else { literal.Text="wangxing"+count.ToString(); } } } } #endregion }.