• 大小: 1.16MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-26
  • 语言: C#
  • 标签: C#  ASP.NET1.1  ACCESS  

资源简介

本源代码为本人大二时期2005年5月——7月所做的ASP.NET班级网站,使用语言为C#,开发平台为VS 2003,数据库使用access,适合初学者 代码完整,包含前天新闻显示发布,文件上传,后台管理,用户验证,在线投票等

资源截图

代码片段和文件信息

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
using System.Data.OleDb;

namespace _03soft
{
/// 
/// AG_list 的摘要说明。
/// 

public class AG_list : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Image Image1;
protected System.Web.UI.WebControls.DataList NewsList;

private void Page_Load(object sender System.EventArgs e)
{
// 在此处放置用户代码以初始化页面
if(!IsPostBack)
{
string conStr=“Provider=Microsoft.Jet.OLEDB.4.0;“;          //设置连接字符串
conStr+=@“Data Source=“;
conStr+=Server.MapPath(“db\\softdb.asp“);
OleDbConnection conn=new OleDbConnection(conStr);
OleDbDataAdapter Adapter1=new OleDbDataAdapter(“select * from Article where classify=‘娱乐‘ order by DateAndTime desc“conn); 
DataSet ds1=new DataSet();
Adapter1.Fill(ds1“Article“);            
NewsList.DataSource=ds1.Tables[0].DefaultView;
NewsList.DataBind();
}
}

#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}

/// 
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// 

private void InitializeComponent()
{    
this.Load += new System.EventHandler(this.Page_Load);

}
#endregion
}
}

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

    .......      1008  2005-06-25 21:42  head.ascx.cs

    .......      5317  2005-06-25 21:42  head.ascx.resx

    .......      1433  2005-07-08 15:06  in.aspx

    .......      1739  2005-07-08 15:06  in.aspx.cs

    .......      5317  2005-07-08 15:06  in.aspx.resx

    .......     19814  2005-07-15 09:20  index.aspx

    .......      7036  2005-07-15 09:19  index.aspx.cs

    .......      5317  2005-07-13 15:03  index.aspx.resx

    .......       116  2005-07-17 13:41  licenses.licx

    .......       608  2005-06-23 08:36  list.ascx

    .......       936  2005-06-23 08:36  list.ascx.cs

    .......      5317  2005-06-23 08:36  list.ascx.resx

    .......      3530  2005-06-30 09:59  Study_list.aspx

    .......      1577  2005-07-19 16:28  Study_list.aspx.cs

    .......      5317  2005-06-26 14:45  Study_list.aspx.resx

    .......      4591  2005-07-17 14:33  Web.config

    .......     14426  2003-02-21 20:14  WebUIValidation.js

     文件        166  2011-09-24 21:03  作者.txt

    .......      2896  2005-07-12 09:42  admin\Admin_AddUser.aspx

    .......      4138  2005-07-17 19:08  admin\Admin_AddUser.aspx.cs

    .......      5317  2005-07-12 09:42  admin\Admin_AddUser.aspx.resx

    .......      2165  2005-07-12 22:34  admin\Admin_ManageUser.aspx

    .......      4317  2005-07-12 22:34  admin\Admin_ManageUser.aspx.cs

    .......      5317  2005-07-12 22:34  admin\Admin_ManageUser.aspx.resx

    .......      3340  2005-08-04 14:12  admin\Admin_AddArticle.aspx

    .......      2192  2005-08-04 14:18  admin\Admin_AddAnnounce.aspx

     文件       3340  2011-09-24 21:02  admin\Admin_AddAnnounce.aspx.cs

    .......      5317  2005-08-04 14:18  admin\Admin_AddAnnounce.aspx.resx

    .......      4490  2005-08-04 14:12  admin\Admin_AddArticle.aspx.cs

    .......      5317  2005-08-04 14:12  admin\Admin_AddArticle.aspx.resx

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

评论

共有 条评论