.net2003里,如何将自定义属性显示在属性列表里?
如题,我做了一个属性是控制分页的行数 
 2005里自定义属性直接就能在属性列表里显示出来,但03不可以! 
 请细心的朋友帮忙解答,谢谢大家了! 
 C#   asp.net 
------解决方案--------------------
[System.ComponentModel.Description( "描述 "), 
 System.ComponentModel.DefaultValue(默认值), 
 System.ComponentModel.Browsable(True:显示,false:不显示)] 
 public int MyIntValue 
 { 
 get 
 { 
 return this.m_intValue; 
 } 
 set 
 { 
 this.m_intValue = value; 
 } 
 }