用asp.net写的论坛程序
2001-05-14 10:58:20 来源:WEB开发网核心提示:这是一个用asp.net写的论坛程序,虽然简单但可以运行,用asp.net写的论坛程序,这个程序的编程思想其实还是基本延续了asp的方式,如果让那只大鸟儿看见可能要嘘之以鼻,2)reply.aspx-当在论坛主页中点击一个贴子时调用,显示贴子详细内容,但实际上这种方式对于asp程序向asp.net的快速移植还是有用的,
这是一个用asp.net写的论坛程序,虽然简单但可以运行。
这个程序的编程思想其实还是基本延续了asp的方式,如果让那只大鸟儿看见可能要嘘之以鼻。但实际上这种方式对于asp程序向asp.net的快速移植还是有用的。如果你对这种移植不屑那也没办法,这个贴子就算给asp.net刚入门的小虾们开开眼。
这个例子包含3部分
1)forum.aspx-论坛主页。
2)reply.aspx-当在论坛主页中点击一个贴子时调用,显示贴子详细内容。
3)postmessage.aspx-上贴时调用,将内容保存入数据库
数据库结构 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.
这个程序的编程思想其实还是基本延续了asp的方式,如果让那只大鸟儿看见可能要嘘之以鼻。但实际上这种方式对于asp程序向asp.net的快速移植还是有用的。如果你对这种移植不屑那也没办法,这个贴子就算给asp.net刚入门的小虾们开开眼。
这个例子包含3部分
1)forum.aspx-论坛主页。
2)reply.aspx-当在论坛主页中点击一个贴子时调用,显示贴子详细内容。
3)postmessage.aspx-上贴时调用,将内容保存入数据库
数据库结构 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.
- ››asp.net页面弄成伪静态页面
- ››Asp.net 中将汉字转换成拼音的方法
- ››ASP.NET及JS中的cookie基本用法
- ››ASP.NET获取MS SQL Server安装实例
- ››asp.net实现调用百度pai 在线翻译英文转中文
- ››ASP.NET页面选项进行提示判断
- ››Asp.net定时执行程序
- ››ASP.NET中利用DataList实现图片无缝滚动
- ››ASP.NET验证控件RequiredFieldValidator
- ››ASP.NET中使用System.Net.Mail发邮件
- ››ASP.NET中获取用户控件中控件的ID
- ››ASP.NET中FileBytes写成文件并存档
更多精彩
赞助商链接