C#简单留言板源码
留言板分三个模块:列出留言列表、显示详细内容、发表留言notepage.cs
namespace  notpage
{
using  System;
using  System.Data.SQL  ;
using  System.Data  ;
using  System.Collections  ;
////////////////////////////////////////////////////////////////////
//
//  Class  Name  :  留言板
/
/
//  Description:  构造一个留言板对象
//
//  date:  2000/06/06
//
//  作者:天啦
///  //////////////////////////////////////////////////////////////// ///  <summary>
///  Summary  description  for  notepage.
///  </summary>
public  class  notepage
{
/
/私有变量
private  int  n_intID  ;  //ID编号
private  string  n_strTitle  ;  //主题
private  string  n_strAuthor  ;  //留言人private  string  n_strContent  ;  //留言内容private  DateTime  n_dateTime  ;  //留言时间//属性
public  int  ID
{
get
return  n_intID  ;
}
set
{
n_intID  =  value; }
}
public  string  Title {
get
{
return  n_strTitle  ; }
set
{
n_strTitle  =  value;
}
public  string  Author {
get
{
return  n_strAuthor  ; }
set
{
n_strAuthor  =  value  ; }
}
public  string  Content {
get
{
return  n_strContent  ;
}
set
{
n_strContent  =  value  ; }
}
public  DateTime  adddate {
get
{
return  n_dateTime;
}
set
asp查看源码配置ui
{
n_dateTime  =  value;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。