Asp.net源码专业站
首页->留言本类->简单的论坛式留言本>>App-Code/ReplyGB.cs>>源码在线查看
温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:简单的论坛式留言本
当前文件:文件类型 SimpleBbsGuestBook/App_Code/ReplyGB.cs[1K,2009-6-12 11:54:02]打开代码结构图
普通视图
		            
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 11/// <summary> 12/// ReplyGB 的摘要说明 13/// 回复类 14/// </summary> 15public class ReplyGB 16{ 17 /// <summary> 18 /// rep_id 回复ID 19 /// rep_gb_id 回复的留言ID 20 /// rep_ip 回复者的IP 21 /// rep_content 回复的内容 22 /// rep_date 回复时间 23 /// </summary> 24 private int rep_id, rep_gb_id; 25 26 private string rep_ip, rep_content; 27 28 private DateTime rep_date; 29 30 public DateTime Rep_date 31 { 32 get { return rep_date; } 33 set { rep_date = value; } 34 } 35 36 public string Rep_content 37 { 38 get { return rep_content; } 39 set { rep_content = value; } 40 } 41 42 public string Rep_ip 43 { 44 get { return rep_ip; } 45 set { rep_ip = value; } 46 } 47 48 public int Rep_gb_id 49 { 50 get { return rep_gb_id; } 51 set { rep_gb_id = value; } 52 } 53 54 public int Rep_id 55 { 56 get { return rep_id; } 57 set { rep_id = value; } 58 } 59 60 public ReplyGB() 61 { 62 // 63 // TODO: 在此处添加构造函数逻辑 64 // 65 } 66} 67
还没有找到您心仪的内容?请用.net源码大搜捕
代码片断 打包下载该项目完整源码:简单的论坛式留言本
51Aspx.com 版权所有 CopyRight © 2006-2010. 京ICP备06046876号 本站法律顾问:ITlaw-庄毅雄律师
返回顶部
客户服务:点击这里进行客户咨询 业务合作:点击这里洽谈业务合作 合作热线:010-68880146