<%@ Page Language="C#" AutoEventWireup="true" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:SqlDataSource ID="sourceEmployees"
runat="server"
ProviderName="System.Data.SqlClient"
ConnectionString="<%$ ConnectionStrings:Northwind %>"
SelectCommand="SELECT EmployeeID, FirstName, LastName, Title, City FROM Employees" >
</asp:SqlDataSource>
<asp:GridView ID="GridView1"
runat="server"
DataSourceID="sourceEmployees"
CellPadding="4"
Font-Names="Verdana"
Font-Size="Small"
ForeColor="Navy"
GridLines="None"
AutoGenerateColumns="False"
DataKeyNames="EmployeeID"
EnableSortingAndPagingCallbacks="True"
PageSize="5">
<FooterStyle BackColor="#990000"
Font-Bold="True"
ForeColor="White" />
<RowStyle BackColor="#FFFBD6"
ForeColor="Navy" />
<PagerStyle BackColor="#FFCC66"
ForeColor="Navy"
HorizontalAlign="Center" />
<SelectedRowStyle BackColor="#FFCC66"
Font-Bold="True"
ForeColor="Navy" />
<HeaderStyle BackColor="#990000"
Font-Bold="True"
ForeColor="White" />
<AlternatingRowStyle BackColor="White" />
<Columns>
<asp:BoundField DataField="EmployeeID" HeaderText="ID" />
<asp:BoundField DataField="FirstName" HeaderText="First Name" />
<asp:BoundField DataField="LastName" HeaderText="Last Name" />
<asp:BoundField DataField="Title" HeaderText="Title" />
<asp:BoundField DataField="City" HeaderText="City" />
</Columns>
</asp:GridView>
</div>
</form>
</body>
</html>
File: Web.config
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<connectionStrings>
<add name="Northwind" connectionString="Data Source=localhost;Initial Catalog=Northwind;Integrated Security=SSPI"/>
</connectionStrings>
</configuration>
SqlDataSource with select command
原创
©著作权归作者所有:来自51CTO博客作者mb630ec035bcfe8的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:ASP.Net 获取当前路径与C# 获取当前路径的不同
下一篇:GCC基本用法
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
Oceanbase为啥新入数据select慢
oceanbase运维,it小白,OB数据库
数据库 数据 MySQL Oceanbase -
SqlDataSource和ObjectDataSource
摘自ASP.NET 3.5揭秘
用户 ObjectDataSource 数据库数据 SqlDataSource -
sqldatasource控件处理image类型数据
要用SqlDatasource绑定存储过程来实现添加数据,发现Image类型字段需要特别处理。
职场 数据库 休闲 image sqldatasource