dataGrid 中添加数据-ASP教程,数据库相关
来源:作者: 发布时间:2007-12-26 02:05:48

文档代码:
test.aspx
===========================>
<%@ page language="c#" debug="true"%>
<%@import namespace="system.data"%>
<%@ import namespace="system.data.sqlclient" %>
webdiyer制造:)
数据库中employees表结构:
create table employees (
[id] [int] identity (1, 1) not null ,
[name] [nvarchar] (10) collate chinese_prc_ci_as not null ,
[age] [tinyint] not null ,
[address] [nvarchar] (50) collate chinese_prc_ci_as not null
) on [primary]
go
alter table employees add
constraint [pk_employees] primary key clustered
(
[id]
) on [primary]
go
|
还没有关于此文章的相关评论!