明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

用asp.net寫(xiě)的論壇程序

[摘要]這是一個(gè)用asp.net寫(xiě)的論壇程序,雖然簡(jiǎn)單但可以運(yùn)行。這個(gè)程序的編程思想其實(shí)還是基本延續(xù)了asp的方式,如果讓那只大鳥(niǎo)兒看見(jiàn)可能要噓之以鼻。但實(shí)際上這種方式對(duì)于asp程序向asp.net的快速移植還是有用的。如果你對(duì)這種移植不屑那也沒(méi)辦法,這個(gè)貼子就算給asp.net剛?cè)腴T(mén)的小蝦們開(kāi)開(kāi)眼。這個(gè)...
這是一個(gè)用asp.net寫(xiě)的論壇程序,雖然簡(jiǎn)單但可以運(yùn)行。

這個(gè)程序的編程思想其實(shí)還是基本延續(xù)了asp的方式,如果讓那只大鳥(niǎo)兒看見(jiàn)可能要噓之以鼻。但實(shí)際上這種方式對(duì)于asp程序向asp.net的快速移植還是有用的。如果你對(duì)這種移植不屑那也沒(méi)辦法,這個(gè)貼子就算給asp.net剛?cè)腴T(mén)的小蝦們開(kāi)開(kāi)眼。

這個(gè)例子包含3部分

1)forum.aspx-論壇主頁(yè)。

2)reply.aspx-當(dāng)在論壇主頁(yè)中點(diǎn)擊一個(gè)貼子時(shí)調(diào)用,顯示貼子詳細(xì)內(nèi)容。

3)postmessage.aspx-上貼時(shí)調(diào)用,將內(nèi)容保存入數(shù)據(jù)庫(kù)

數(shù)據(jù)庫(kù)結(jié)構(gòu)   Table - newpost :This table will contain the New Topic posted messages
postid (primary key)  The unique id for each new topic.
name The name of the author of the message.
email E-mail address of the author.
subject Subject of the message.
ip IP address of the author.
date Date / Time of the Post
message Message posted.
replies Number of replies to the post (if any)
views Number of times the message has been viewed.  


Table - reply :This table will contain the Replies made to the new topics.
replyid (primary key) The unique id for each reply.
name Name of the author.
email E-mail address of the author.
subject Subject of the post
ip IP of the author.
date Date / Time of post.
message Message posted.
postid postid from the "newpost" table for which this message is a reply.