• 大小: 3.78MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-09-20
  • 语言: C#
  • 标签: ASP.NET  SQL  SERVER  微博  

资源简介

在VS2010环境下,用ASP.NET+SQL server实现一个微博系统

资源截图

代码片段和文件信息

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 DBConn;

public partial class Admin : System.Web.UI.Page
{
    public String getUserId = null;

    protected void Page_Load(object sender EventArgs e)
    {
        if (Session[“userId“] == null)
        {
            Session[“userId“] = Request.Cookies[“myCookie“].Value.ToString();
        }

        Session[“friendId“] = null;

        String conn = ConfigurationManager.AppSettings[“MyConnectionString“];
        Class1 DBConn = new Class1(conn);
        String[] myFriendsName = new String[200];
        String[] myFriendsId = new String[200];

        if (Session[“userId“] == null)
        {
            Response.Redirect(“Default.aspx“);
        }
        else
        {
            getUserId = Session[“userId“].ToString();
        }

        Session[“friendId“] = null;

        String delFriendId = Request.QueryString[“friendId“];
        if (delFriendId != null)
        {
            DBConn.deleteUser(delFriendId);
        }
 
        myFriendsId = DBConn.getAllUserID();
        for (int k = 0; k < 200; k++)
        {
            if (myFriendsId[k] != null)
            {
                myFriendsName[k] = DBConn.getName(myFriendsId[k]);
            }
        }

        this.Label1.Text = null;
        this.Label1.Text = “
“;
        for (int i = 0; i < 200; i++)
        {
            if (myFriendsName[i] != null)
            {
                this.Label1.Text += “           “;
                this.Label1.Text += “                this.Label1.Text += myFriendsId[i];
                this.Label1.Text += “\“>“;
                this.Label1.Text += myFriendsName[i];
                this.Label1.Text += “          “;
                this.Label1.Text += “                this.Label1.Text += myFriendsId[i];
                this.Label1.Text += “\“>删除用户“;
                this.Label1.Text += “
“;
            }
        }
    }
}

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

     文件       1727  2013-06-01 16:44  WeiBo\Admin.aspx

     文件       2412  2013-05-31 21:24  WeiBo\Admin.aspx.cs

     文件      17451  2013-05-31 21:34  WeiBo\App_Code\Database\Database.cs

     文件       6525  2010-06-18 09:49  WeiBo\App_Code\MakeThum.cs

     文件   10485760  2010-06-10 21:51  WeiBo\App_Data\ASPNETDB.MDF

     文件     516096  2010-06-10 21:51  WeiBo\App_Data\aspnetdb_log.ldf

     文件        773  2013-06-01 19:28  WeiBo\app_offline.htm

     文件      24576  2010-06-18 19:54  WeiBo\Bin\DBConn.dll

     文件      26112  2010-06-18 19:54  WeiBo\Bin\DBConn.pdb

     文件       1725  2013-05-31 19:31  WeiBo\Bowen.aspx

     文件       2308  2013-05-31 21:24  WeiBo\Bowen.aspx.cs

     文件       1040  2013-05-22 10:46  WeiBo\CSS\Twitter_Navi_link.css

     文件        438  2013-05-31 12:25  WeiBo\Default.aspx

     文件        616  2010-06-18 18:01  WeiBo\Default.aspx.cs

     文件       6116  2010-06-18 01:18  WeiBo\Editor.aspx

     文件       5365  2010-06-18 10:21  WeiBo\Editor.aspx.cs

     文件       2109  2010-06-18 18:27  WeiBo\Friends.aspx

     文件       2551  2010-06-18 19:16  WeiBo\Friends.aspx.cs

     文件       6656  2010-06-13 11:55  WeiBo\Images\1.png

     文件     288613  2013-05-22 09:26  WeiBo\Images\2.png

     文件     122744  2013-05-22 09:15  WeiBo\Images\3.png

     文件       3836  2013-05-22 12:30  WeiBo\Images\5.png

     文件       5740  2013-05-22 13:49  WeiBo\Images\7.png

     文件      13522  2013-05-22 14:00  WeiBo\Images\8.png

     文件       9601  2013-05-22 14:03  WeiBo\Images\9.png

     文件       8201  2010-06-10 18:01  WeiBo\Images\back.png

     文件      82772  2013-05-22 10:14  WeiBo\Images\back1.png

     文件      86447  2013-05-22 11:15  WeiBo\Images\back3.png

     文件     518468  2013-05-22 09:42  WeiBo\Images\bg-clouds.png

     文件       3584  2013-05-22 14:31  WeiBo\Images\reg.png

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

评论

共有 条评论