• 大小: 80KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-07-14
  • 语言: C#
  • 标签: 发布系统  

资源简介

小说发布系系统(未发布) 课程(基于C#的ASP.NET程序设计) 功能:小说的添加,删除,修改,搜索 数据库:SQL 编写工具:VS2005 C#

资源截图

代码片段和文件信息

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 dl : System.Web.UI.Page
{
    protected void Page_Load(object sender EventArgs e)
    {

    }
    protected void Button1_Click1(object sender EventArgs e)
    {
        SqlConnection conn = new SqlConnection(“server=(local);database=demo;integrated security=true“);
        string username = TextBox1.Text.Trim();
        string pwd = TextBox2.Text.Trim();
        string sql;
        sql = “select count(*) from 管理员账户信息 where 帐号=‘“ + username + “‘and 密码=‘“ + pwd + “‘“;
        SqlCommand cmd = new SqlCommand(sql conn);
        conn.Open();
        int ret = (int)cmd.ExecuteScalar();
        conn.Close();
        if (ret <= 0)
        {
            Response.Write(“ript>alert(\“登录失败!用户名或密码错误!\“)ript>“);
        }
        else
        {
            Response.Redirect(“manage.aspx“);
        }

    }
    protected void Button2_Click(object sender EventArgs e)
    {

    }
    protected void TextBox1_TextChanged(object sender EventArgs e)
    {

    }
}

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

     文件       2223  2011-06-19 15:32  小说发布系统\lunwen\App_Code\DbHelper.cs

     文件       2377  2011-06-19 16:28  小说发布系统\lunwen\dl.aspx

     文件       1386  2011-06-19 16:16  小说发布系统\lunwen\dl.aspx.cs

     文件       5240  2011-06-19 15:34  小说发布系统\lunwen\list.aspx

     文件       3511  2011-06-19 15:32  小说发布系统\lunwen\list.aspx.cs

     文件       4702  2011-06-19 16:18  小说发布系统\lunwen\main.aspx

     文件        640  2011-06-19 16:01  小说发布系统\lunwen\main.aspx.cs

     文件       6663  2011-06-19 15:37  小说发布系统\lunwen\manage.aspx

     文件       4073  2011-06-19 15:32  小说发布系统\lunwen\manage.aspx.cs

     文件       1587  2011-06-19 15:35  小说发布系统\lunwen\show.aspx

     文件        751  2011-06-19 15:32  小说发布系统\lunwen\show.aspx.cs

     文件       2212  2011-06-19 15:40  小说发布系统\lunwen\tj.aspx

     文件       1981  2011-06-19 15:40  小说发布系统\lunwen\tj.aspx.cs

     文件       1779  2011-06-19 15:34  小说发布系统\lunwen\updata.aspx

     文件       1169  2011-06-19 15:34  小说发布系统\lunwen\updata.aspx.cs

     文件       2419  2011-06-10 11:08  小说发布系统\lunwen\Web.Config

     文件    2002432  2011-06-19 16:27  小说发布系统\数据库

     文件         48  2011-06-19 16:28  小说发布系统\说明.txt

     目录          0  2011-06-19 16:42  小说发布系统\lunwen\App_Code

     目录          0  2011-06-19 16:42  小说发布系统\lunwen\App_Data

     目录          0  2011-06-19 16:42  小说发布系统\lunwen

     目录          0  2011-06-19 23:37  小说发布系统

----------- ---------  ---------- -----  ----

              2045193                    22


评论

共有 条评论