【例子介绍】C#语言编写的在线留言系统
C#语言编写的在线留言系统源码 实现了简单的在线留言。 发表留言 填好详细信息和内容即可留言 管理留言 必须管理员登陆,查看帖,对帖可以进行回复和删除功能。 后台登陆用户和密码都是:51aspx
【相关图片】
【源码结构】
文件清单
├── add.aspx
├── add.aspx.cs
├── add.aspx.resx
├── admin.aspx
├── admin.aspx.cs
├── admin.aspx.resx
├── App_Code
│ ├── AssemblyInfo.cs
│ └── Global.asax.cs
├── bin
├── buttom.ascx
├── buttom.ascx.cs
├── buttom.ascx.resx
├── config.aspx
├── config.aspx.cs
├── config.aspx.resx
├── ConversionReport.webinfo
├── css.css
├── del.aspx
├── del.aspx.cs
├── del.aspx.resx
├── from.gif
├── Global.asax
├── Global.asax.resx
├── img
│ ├── 01.jpg
│ ├── 02.jpg
│ ├── 03.jpg
│ ├── 04.jpg
│ ├── 05.jpg
│ ├── 06.jpg
│ ├── 07.jpg
│ ├── 08.jpg
│ ├── 09.jpg
│ ├── 10.gif
│ ├── 11.gif
│ ├── 12.gif
│ ├── 1.gif
│ ├── 2.gif
│ ├── 3.gif
│ ├── 41.gif
│ ├── 42.gif
│ ├── 43.jpg
│ ├── 44.gif
│ ├── 45.gif
│ ├── 4.gif
│ ├── 5.gif
│ ├── 6.gif
│ ├── 7.gif
│ ├── 8.gif
│ ├── 9.gif
│ ├── drgt
│ ├── friend.gif
│ ├── ip.gif
│ ├── MAIL.gif
│ ├── qq.gif
│ ├── Thumbs.db
│ ├── url.gif
│ └── xldj
├── index.aspx
├── index.aspx.cs
├── index.aspx.resx
├── replay.aspx
├── replay.aspx.cs
├── replay.aspx.resx
├── top.ascx
├── top.ascx.cs
├── top.ascx.resx
├── Web.config
└── zhoulang.mdb
3 directories, 67 files
评论