一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

刚用ASP.net做完一套用户和新闻管理系统

时间:2008-01-12 编辑:简简单单 来源:一聚教程网

在运行之初,先进行web.config文件的配置
 
 
数据库脚本如下:
/****** Object:  Table [dbo].[AdminUser]      Script Date: 2005-6-12 16:26:46 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[AdminUser]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)drop table [dbo].[AdminUser]GO
/****** Object:  Table [dbo].[Article]      Script Date: 2005-6-12 16:26:46 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Article]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Article]
GO
/****** Object:  Table [dbo].[ArticleGroup]      Script Date: 2005-6-12 16:26:46 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[ArticleGroup]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[ArticleGroup]
GO
/****** Object:  Table [dbo].[GroupPurview]      Script Date: 2005-6-12 16:26:46 ******/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[GroupPurview]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[GroupPurview]
GO
/****** Object:  Table [dbo].[ImageArticle]      Script Date: 2005-6-12 16:26:46 ******/

热门栏目