资源简介
能够进行简单的注册登录,还有管理员的管理,留言板的简单管理
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Data.SqlClient;
using System.Collections;//arraylist
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
String arID = Request.QueryString[“puid“];
String yin = Request.QueryString[“yincang“];
int inde= 0;
if (yin != null && yin.Length != 0)
{
inde = int.Parse(yin);
}
MultiView1.ActiveViewIndex = inde;
if (arID != null&&arID.Length!=0)
{
String strsend = “select yonghu.邮箱yonghu.网名send.发表时间send.内容send.题目send.文章编号yonghu.图片 from sendyonghu where send.文章编号= “ + arID + “ and send.留言者号=yonghu.编号“;
MyMessage db = new MyMessage();
SqlConnection con = db.GetCon();
SqlDataAdapter da = new SqlDataAdapter(strsend con);
DataSet ds = new DataSet();
da.Fill(ds);
DataList1.DataSource = ds.Tables[0];//以下绑定datalist的数据源
DataList1.DataBind();
String strsend1 = “select yonghu.邮箱yonghu.网名back.回复时间back.回复内容yonghu.图片 from backyonghusend where send.文章编号= “ + arID + “ and send.文章编号=back.文章号 and back.回复人号=yonghu.编号“;
MyMessage db1 = new MyMessage();
SqlConnection con1 = db1.GetCon();
SqlDataAdapter da1 = new SqlDataAdapter(strsend1 con1);
DataSet ds1 = new DataSet();
da1.Fill(ds1);
DataList2.DataSource = ds1.Tables[0];//以下绑定datalist的数据源
DataList2.DataBind();
}
}
protected void Button2_Click(object sender EventArgs e)
{
MyMessage db = new MyMessage();
string userName = TextName.Text.Trim();//去除空格键
string passWord = TextCode.Text.Trim();
//获取用户信息
SqlDataReader dr = db.reDr(“select * from [yonghu] where 网名=‘“ + userName + “‘ and 密码=‘“ + passWord + “‘“);
dr.Read();
if (dr.HasRows)//通过dr中是否包含行判断用户是否通过身份验证
{
String id;
//记录ID
Session[“网名“] = userName;
Session[“密码“] = passWord;
MyMessage pdID = new MyMessage();
SqlConnection pdIDcon = pdID.GetCon();
pdIDcon.Open();
String strsend = “select 编号标志 from yonghu where 网名=‘“ + userName + “‘ and 密码=‘“ + passWord + “‘“;
SqlCommand pdIDcom = new SqlCommand(strsend pdIDcon);
SqlDataReader pdIDdr = pdIDcom.ExecuteReader(CommandBehavior.CloseConnection);
while (pdIDdr.Read())
{
Label1.Text= pdIDdr[“编号“].ToString();
Label2.Text = pdIDdr[“标志“].ToString();
}
pdIDdr.Close();
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2011-10-31 21:05 留言板\
目录 0 2011-06-07 20:15 留言板\数据源\
文件 3145728 2011-11-02 21:40 留言板\数据源\message.mdf
文件 1048576 2011-11-02 21:40 留言板\数据源\message_log.ldf
目录 0 2011-10-31 21:05 留言板\留言板\
目录 0 2011-10-31 21:05 留言板\留言板\App_Code\
文件 3568 2011-06-12 16:54 留言板\留言板\App_Code\Class1.cs
目录 0 2011-06-09 13:32 留言板\留言板\App_Data\
文件 11472 2011-06-12 21:42 留言板\留言板\Default.aspx
文件 3773 2011-06-13 20:48 留言板\留言板\Default.aspx.cs
目录 0 2011-10-31 21:05 留言板\留言板\image\
文件 125 2011-06-10 22:41 留言板\留言板\image\001.gif
文件 125 2011-06-10 22:41 留言板\留言板\image\002.gif
文件 125 2011-06-10 22:41 留言板\留言板\image\003.gif
文件 29742 2011-06-08 10:42 留言板\留言板\image\biaoti.jpg
文件 66507 2011-06-08 10:32 留言板\留言板\image\biaotou.jpg
文件 14375 2011-06-08 11:28 留言板\留言板\image\denglulan.jpg
文件 18443 2011-06-08 11:30 留言板\留言板\image\denglulan_conew5.jpg
文件 1034 2011-06-10 22:41 留言板\留言板\image\qq.gif
文件 260 2011-06-10 22:41 留言板\留言板\image\showbj.gif
文件 482 2011-06-12 21:15 留言板\留言板\muban.css
目录 0 2011-10-31 21:05 留言板\留言板\UploadedImages\
文件 1825994 2011-06-12 08:01 留言板\留言板\UploadedImages\DSC00014.JPG
文件 1319355 2011-06-11 22:20 留言板\留言板\UploadedImages\DSC00055.JPG
文件 2000585 2011-06-11 22:41 留言板\留言板\UploadedImages\DSC00056.JPG
文件 1994102 2011-06-11 21:37 留言板\留言板\UploadedImages\DSC00057.JPG
文件 2103541 2011-06-12 08:04 留言板\留言板\UploadedImages\DSC00080.JPG
文件 2363740 2011-06-12 10:33 留言板\留言板\UploadedImages\DSC00167.JPG
文件 1122161 2011-06-11 22:49 留言板\留言板\UploadedImages\DSC00169.JPG
文件 2133004 2011-06-11 21:32 留言板\留言板\UploadedImages\DSC00178.JPG
文件 1002250 2011-06-11 21:44 留言板\留言板\UploadedImages\DSC00179.JPG
............此处省略16个文件信息
相关资源
- FileZilla&Xshell;.zip
- 50万闲聊数据,闲聊库
- 拼车web系统
- 软件测试实战:测试Web MSN
- 传智书城项目完整版
- web通讯录管理系统
- AxureUX WEB前后端交互原型通用元件库
- 基于TCP、QT带虚拟键盘的多功能聊天系
- 东北大学web开发程序设计实践实验报
- 明御WEB应用防火墙产品配置手册V3.0
- 海康威视Web开发包.zip
- QT聊天系统
- 海康威视WEB开发包最新版
- web前端网页psd
- AxureUX WEB前后端交互原型通用元件库
- webview不能调用手机文件选择、相机和
- 基于Web的虚拟课程辅导系统的设计与
- 完整的仿微信聊天DEMO
- 微信小程序模仿微信聊天界面布局d
- 赢在用户:WEB人物角色创建和应用实
- Delphi仿QQ聊天软件P2P全部源码
- WEB服务++原理与技术.pdf
- 嵌入式WEB监控小车全套代码以及文档
- 精通WebAnalytics2.0
- VS+CSocket实现网络聊天,可发文件Wor
- 基于web的公交车查询系统含论文
- web程序设计大作业
- PRTG Traffic Grapher 6.2.2.984-可Web查看-带注
- 《Web服务与数据交换关键技术研究》
- 24小时玩转MyEtherWallet钱包开发.epub
评论
共有 条评论