![]() 利用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 description for notepage. /// 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 { |