资源简介
一个功能简洁实用的留言本程序,页面采用的是VisualStudio风格设计,留言后需要管理员审核后方能显示
可以显示留言者的IP、邮箱等基本信息
管理员登录后可以对留言进行审核、回复及删改等操作
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Collections;
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.OleDb;
public partial class _Default : System.Web.UI.Page
{
DB DBManage = new DB();
string strSql = ““;
protected void Page_Load(object sender EventArgs e)
{
if (Session[“admin“] == null)
strSql = “select * from Messages where ispass=true order by mid desc“;
else
{
strSql = “select * from Messages order by mid desc“;
}
if (!IsPostBack)
{
getDataList(strSql “Messages“);
}
}
public void getDataList(string strSql string tableName)
{
PagedDataSource objPds = new PagedDataSource();
DataSet ds = new DataSet();
ds = DBManage.getDs(strSql tableName);
objPds.DataSource = ds.Tables[0].DefaultView;
objPds.AllowPaging = true;
objPds.PageSize = 10;
int PageSum=objPds.PageCount;
if (PageSum == 1)
{
PageView.Text = ““;
}
else
{
int CurPage;
//当前页面从Page查询参数获取
if (Request.QueryString[“Page“] != null)
CurPage = Convert.ToInt32(Request.QueryString[“Page“]);
else
CurPage = 1;
objPds.CurrentPageIndex = CurPage - 1;
//循环上限
int totale;
if (PageSum<10)
totale=PageSum;
else
totale=10;
if (CurPage>PageSum)
totale=PageSum%10;
PageView.Text = “nk‘>当前:“ + CurPage + “页共“ + PageSum + “页“;
PageView.Text += “首页“;
if (!objPds.IsFirstPage)
PageView.Text += “上一页“;
else
PageView.Text += “nk‘>上一页“;
for (int i = 1; i <= totale; i++)
{
int pageid;
if (CurPage%10==0)
pageid = i + (CurPage / 10) * 10 -1;
else
pageid=i + (CurPage / 10) * 10;
if (pageid > PageSum)
break;
if (i!=CurPage%10)
PageView.Text += (““ + pageid + ““);
else
PageView.Text += (““ + pageid + ““);
}
if (!objPds.IsLastPage)
PageView.Text += “下一页“;
else
PageView.Text += “nk‘>
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 626688 2009-01-04 10:33 DB_51aspx\Data.accdb
文件 410 2007-05-03 11:25 images\bg.jpg
文件 1777 2007-05-02 16:05 images\copy.gif
文件 4945 2007-07-18 09:38 images\from.gif
文件 54 2007-05-03 11:39 images\headbg.gif
文件 90 2007-05-02 15:45 images\icon01.gif
文件 97 2007-05-02 15:45 images\icon02.gif
文件 94 2007-05-02 15:45 images\icon03.gif
文件 90 2007-05-02 15:45 images\icon04.gif
文件 92 2007-05-02 15:45 images\icon05.gif
文件 92 2007-05-02 15:46 images\icon06.gif
文件 246 2007-05-02 16:02 images\icon_ti
文件 3250 2007-05-03 13:45 images\st
文件 9193 2007-05-03 11:15 images\top.jpg
文件 448 2007-05-03 11:23 images\未命名-5.jpg
文件 1847 2009-01-04 10:33 51aspx源码必读.txt
文件 2415 2009-01-04 10:35 Default.aspx
文件 4553 2007-05-03 17:21 Default.aspx.cs
文件 4945 2007-07-18 09:38 from.gif
文件 2188 2007-05-03 22:52 login.aspx
文件 2699 2009-01-04 10:23 login.aspx.cs
文件 2733 2007-05-03 14:03 Post.aspx
文件 7199 2007-05-03 23:11 Post.aspx.cs
文件 2264 2007-05-03 21:48 review.aspx
文件 2098 2007-05-03 23:02 review.aspx.cs
文件 1656 2007-05-03 11:31 template.html
文件 1606 2007-05-03 22:08 web.config
文件 125 2007-03-27 14:33 最新Asp.Net源码下载.url
文件 2762 2009-01-04 10:31 App_Code\DB.cs
目录 0 2009-01-04 10:33 DB_51aspx
............此处省略6个文件信息
- 上一篇:硬盘录像机超级密码生成软件
- 下一篇:酒店管理系统需求分析说明书
评论
共有 条评论