• 大小: 3.78MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-01
  • 语言: 其他
  • 标签: .NET  博客  

资源简介

。net博客系统。适合学生和初学者下载后学习借鉴,就这样

资源截图

代码片段和文件信息

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.SqlClient;

public partial class Article : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {
        int id = Convert.ToInt32(Request.QueryString[“ID“].ToString());
        if (id<=0)
        {
            Response.Write(“请选择文章“);
            Response.Redirect(“default.aspx“);
        }

        //读取数据库连接字符串
        string settings = Convert.ToString(ConfigurationManager.ConnectionStrings[“SqlServices“]);
        //创建数据库连接对象
        SqlConnection myconn = new SqlConnection(settings);
        myconn.Open();
        string strsql = “select * from Articles Where ArticleID=“ + id;
        SqlCommand mycmd = new SqlCommand(strsql myconn);
        //SqlDataReader读取数据到记录集后,会自动关闭数据库的连接
        SqlDataReader result = mycmd.ExecuteReader();
        if (result.Read())
        {
            lbl_title.Text = result[“title“].ToString();

            lbl_content.Text = “    “ + result[“A_Content“].ToString();
        }
        myconn.Close();
        BindList();
    }
    void BindList()
    {
        int id = Convert.ToInt32(Request.QueryString[“ID“].ToString());

        //读取数据库连接字符串
        string settings = Convert.ToString(ConfigurationManager.ConnectionStrings[“SqlServices“]);
        //创建数据库连接对象
        SqlConnection myconn = new SqlConnection(settings);
        myconn.Open();
        string strsql = “select * from Comments Where ArticleID=“ + id;
        SqlCommand mycmd = new SqlCommand(strsql myconn);
        //SqlDataReader读取数据到记录集后,会自动关闭数据库的连接
        SqlDataReader result = mycmd.ExecuteReader(CommandBehavior.CloseConnection);

        gv_comment.DataSource = result;
        gv_comment.DataBind();
    }
    protected void Foot1_Load(object sender EventArgs e)
    {

    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        893  2007-08-18 22:38  博客系统\博客系统.htm

     文件    2673947  2007-08-18 22:38  博客系统\博客系统.swf

     文件    3145728  2007-08-16 21:15  博客系统\数据库\BlogData.mdf

     文件    1048576  2007-08-16 21:15  博客系统\数据库\BlogData_log.ldf

     文件       2243  2007-04-23 12:04  博客系统\源码\Admin\AddNew.ascx

     文件       2438  2007-04-23 18:04  博客系统\源码\Admin\AddNew.ascx.cs

     文件       2891  2007-04-23 18:03  博客系统\源码\Admin\AddNew.aspx

     文件        447  2007-04-23 18:03  博客系统\源码\Admin\AddNew.aspx.cs

     文件       6105  2007-04-23 17:44  博客系统\源码\Admin\AddPhoto.aspx

     文件       2944  2007-04-23 16:48  博客系统\源码\Admin\AddPhoto.aspx.cs

     文件       6201  2007-04-23 16:36  博客系统\源码\Admin\AddVideo.aspx

     文件       2932  2007-04-24 14:00  博客系统\源码\Admin\AddVideo.aspx.cs

     文件       1231  2007-04-23 11:22  博客系统\源码\Admin\articleList.ascx

     文件       2058  2006-12-25 16:49  博客系统\源码\Admin\articleList.ascx.cs

     文件       3118  2007-04-23 18:04  博客系统\源码\Admin\ArticleManage.aspx

     文件        541  2007-04-23 18:04  博客系统\源码\Admin\ArticleManage.aspx.cs

     文件        452  2006-08-02 21:01  博客系统\源码\Admin\CheckCode.aspx

     文件       3228  2006-08-11 20:50  博客系统\源码\Admin\CheckCode.aspx.cs

     文件       4620  2007-04-23 17:41  博客系统\源码\Admin\CommentManage.aspx

     文件       2052  2007-04-23 17:42  博客系统\源码\Admin\CommentManage.aspx.cs

     文件       3006  2007-04-23 17:32  博客系统\源码\Admin\Default.aspx

     文件        416  2007-04-23 17:35  博客系统\源码\Admin\Default.aspx.cs

     文件       1134  2006-12-19 17:20  博客系统\源码\Admin\help.ascx

     文件        418  2006-12-19 17:12  博客系统\源码\Admin\help.ascx.cs

     文件       6804  2007-04-23 11:10  博客系统\源码\Admin\login.aspx

     文件       3067  2006-12-21 13:39  博客系统\源码\Admin\login.aspx.cs

     文件       1068  2007-04-23 17:31  博客系统\源码\Admin\Menu.ascx

     文件        418  2006-12-19 17:09  博客系统\源码\Admin\Menu.ascx.cs

     文件       5382  2007-04-23 16:08  博客系统\源码\Admin\Mod.aspx

     文件       2251  2007-04-23 16:08  博客系统\源码\Admin\Mod.aspx.cs

............此处省略58个文件信息

评论

共有 条评论