资源简介
基于ASP.NET的博客系统源代码 BLOG
代码片段和文件信息
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
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.xml.Linq;
using System.Data.SqlClient;
namespace Web
{
public partial class Blog : System.Web.UI.Page
{
protected void Page_Load(object sender EventArgs e)
{
if (!IsPostBack)
{
dlbind();
}
}
#region
///
/// 分页
///
public void dlbind()
{
int curpage = Convert.ToInt32(lb_currentpage.Text);
string conn = ConfigurationManager.ConnectionStrings[“Conneciton“].ConnectionString;
SqlDataAdapter da = new SqlDataAdapter(“select top 50 * from News where issave=0 and isdel=0“ conn);
DataSet ds = new DataSet();
da.Fill(ds “news“);
PagedDataSource ps = new PagedDataSource();
ps.DataSource = ds.Tables[“news“].DefaultView;
ps.AllowPaging = true;
ps.PageSize = 3;
ps.CurrentPageIndex = curpage - 1;
lb_page.Text = Convert.ToString(ps.PageCount);
if (!IsPostBack)
{
for (int i = 1; i <= ps.PageCount; i++)
{
DropDownList1.Items.Add(i.ToString());
}
DropDownList1.SelectedItem.Text = curpage.ToString();
}
lbtn_frist.Enabled = true;
lbtn_up.Enabled = true;
lbtn_down.Enabled = true;
lbtn_last.Enabled = true;
if (curpage == 1)
{
lbtn_frist.Enabled = false;
lbtn_up.Enabled = false;
}
if (curpage == ps.PageCount)
{
lbtn_down.Enabled = false;
lbtn_last.Enabled = false;
}
Repeater1.DataSource = ps;
Repeater1.DataBind();
}
protected void lbtn_frist_Click(object sender EventArgs e)
{
lb_currentpage.Text = “1“;
dlbind();
}
protected void lbtn_up_Click(object sender EventArgs e)
{
lb_currentpage.Text = Convert.ToString(Convert.ToInt32(lb_currentpage.Text) - 1);
dlbind();
}
protected void lbtn_down_Click(object sender EventArgs e)
{
lb_currentpage.Text = Convert.ToString(Convert.ToInt32(lb_currentpage.Text) + 1);
dlbind();
}
protected void lbtn_last_Click(object sender EventArgs e)
{
lb_currentpage.Text = lb_page.Text;
dlbind();
}
protected void DropDownList1_SelectedIndexChanged(object
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1585 2010-11-30 20:34 asp.net博客网站\博客网站\Blog.sln
..A..H. 182784 2012-12-02 11:35 asp.net博客网站\博客网站\Blog.suo
文件 33 2010-12-01 11:35 asp.net博客网站\博客网站\read me.txt
文件 2031616 2012-12-08 17:35 asp.net博客网站\博客网站\Web\App_Data\Blog_Data.MDF
文件 1048576 2012-12-08 17:35 asp.net博客网站\博客网站\Web\App_Data\Blog_Log.LDF
文件 110592 2008-01-26 22:17 asp.net博客网站\博客网站\Web\bin\AspNetPager.dll
文件 589824 2007-05-10 01:14 asp.net博客网站\博客网站\Web\bin\CuteEditor.dll
文件 128 2007-06-13 14:08 asp.net博客网站\博客网站\Web\bin\cuteeditor.lic
文件 67072 2012-12-02 09:52 asp.net博客网站\博客网站\Web\bin\Web.dll
文件 345600 2012-12-02 09:52 asp.net博客网站\博客网站\Web\bin\Web.pdb
文件 2183 2010-11-25 16:10 asp.net博客网站\博客网站\Web\Blog.aspx
文件 3469 2010-11-27 15:16 asp.net博客网站\博客网站\Web\Blog.aspx.cs
文件 3566 2010-11-25 13:34 asp.net博客网站\博客网站\Web\Blog.aspx.designer.cs
文件 15843 2010-11-30 21:52 asp.net博客网站\博客网站\Web\BlogDataClasses.dbml
文件 2656 2010-11-30 21:52 asp.net博客网站\博客网站\Web\BlogDataClasses.dbml.layout
文件 57571 2010-11-30 21:52 asp.net博客网站\博客网站\Web\BlogDataClasses.designer.cs
文件 2031616 2012-12-02 09:48 asp.net博客网站\博客网站\Web\Blog_Data.MDF
文件 3977 2010-12-02 11:26 asp.net博客网站\博客网站\Web\Controls\huifu.ascx
文件 2913 2010-11-30 21:21 asp.net博客网站\博客网站\Web\Controls\huifu.ascx.cs
文件 5686 2010-11-27 13:40 asp.net博客网站\博客网站\Web\Controls\huifu.ascx.designer.cs
文件 1456 2010-11-25 16:15 asp.net博客网站\博客网站\Web\Controls\LeftList.ascx
文件 1158 2010-11-30 21:21 asp.net博客网站\博客网站\Web\Controls\LeftList.ascx.cs
文件 806 2010-11-06 22:42 asp.net博客网站\博客网站\Web\Controls\LeftList.ascx.designer.cs
文件 2558 2010-11-27 13:45 asp.net博客网站\博客网站\Web\Controls\liuyan.ascx
文件 3140 2010-11-27 14:50 asp.net博客网站\博客网站\Web\Controls\liuyan.ascx.cs
文件 3253 2010-11-07 00:17 asp.net博客网站\博客网站\Web\Controls\liuyan.ascx.designer.cs
文件 233 2012-12-02 11:00 asp.net博客网站\博客网站\Web\Controls\User.ascx
文件 520 2009-08-17 11:25 asp.net博客网站\博客网站\Web\Controls\User.ascx.cs
文件 465 2010-11-25 15:33 asp.net博客网站\博客网站\Web\Controls\User.ascx.designer.cs
文件 8323 2010-11-30 20:57 asp.net博客网站\博客网站\Web\css\AC_RunActiveContent.js
............此处省略2698个文件信息
相关资源
- ASP.NET+SQL Server小说阅读系统源码
- ASP.NET源码项目
- 高清彩版 ASP.NET Core MVC 2.0 Cookbook
- ASP.NET网上商城完整源码[201903]
- Pro ASP.NET Core MVC 第6版 2016 pdf 0分
- ASP.NET Core Cloud-ready Enterprise Web Applic
- 基于asp.net学生成绩管理系统课程设计
- ASP.NET动态网页设计案例教程
- asp.net 客户关系管理系统完整源码.r
- 高清彩版 Pro ASP.NET Core MVC 2(7th)
- 淘淘汽配网上商城项目
- ASP.NET MVC权限管理系统源代码
- PC电脑微信c#源代码
- asp.net(c#)开源商店系统Brn shop 2.1(
- asp.net三层写的安欣快餐在线订餐系统
- asp.net图片管理系统
- ASP.NET CORE跨平台开发从入门到实战
- ASP.NET MVC4+EF6+Bootstrap3 通用后台管理系
- 人事管理系统源代码+解决方案
- ASP.NET MVC后台系统项目
- Manning ASP.NET Core in Action 2018.6 pdf
- asp.net编写的在线同学录网站
- .NET 4.5与Visual Basic 2012高级编程(第
- asp.net 进销存系统
- ASP.NET的学生作业管理系统设计实现论
- ASP.NET汽配商城
- 学生在线选课系统
- ASP.NET Core 3.1 官方教程.pdf
- ASP.NET MVC4 增删改查
- C#高级编程(第11版_高清版_课程+源代
评论
共有 条评论