您目前尚未登陆,请选择【登陆】或【注册
首页->功能源码->VS2005典型实例源码大全(C#)>>Web/App-Code/CustomProfile.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:VS2005典型实例源码大全(C#)
当前文件:文件类型 VS2005Helper/Web/App_Code/CustomProfile.cs打开代码结构图
普通视图
		            
1using System; 2using System.Data; 3using System.Configuration; 4using System.Web; 5using System.Web.Security; 6using System.Web.UI; 7using System.Web.UI.WebControls; 8using System.Web.UI.WebControls.WebParts; 9using System.Web.UI.HtmlControls; 10 11using System.Web.Profile; 12 13/// <summary> 14/// CustomProfile 的摘要说明 15/// </summary> 16public class CustomProfile : ProfileBase 17{ 18 private string _customName; 19 20 public string CustomName 21 { 22 get { return _customName; } 23 set { _customName = value; } 24 } 25 26 private bool _customSex; 27 28 public bool CustomSex 29 { 30 get { return _customSex; } 31 set { _customSex = value; } 32 } 33} 34
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:VS2005典型实例源码大全(C#)
51Aspx.com 版权所有 CopyRight © 2000-2008. 京ICP备06046876号