温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:简单的论坛式留言本
当前文件:
SimpleBbsGuestBook/App_Code/ReplyGB.cs[1K,2009-6-12 11:54:02],打开代码结构图
SimpleBbsGuestBook/App_Code/ReplyGB.cs[1K,2009-6-12 11:54:02],打开代码结构图1using System; 2
using System.Data; 3
using System.Configuration; 4
using System.Web; 5
using System.Web.Security; 6
using System.Web.UI; 7
using System.Web.UI.WebControls; 8
using System.Web.UI.WebControls.WebParts; 9
using System.Web.UI.HtmlControls; 10
11
/// <summary> 12
/// ReplyGB 的摘要说明 13
/// 回复类 14
/// </summary> 15
public 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








