记录我的第一次ASP.net程序
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Index.aspx.cs"
Theme="主题1" Inherits="Index" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head
runat="server">
<title>公司后台管理界面</title>
</head>
<body>
<div
class="form1">
<form id="form1"
runat="server">
<asp:GridView ID="GridView1"
runat="server" AllowPaging="True"
BackColor="White" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px"
CellPadding="4" DataKeyNames="id"
PageSize="5" Width="911px"
onpageindexchanging="GridView1_PageIndexChanging"
onrowdeleting="GridView1_RowDeleting" onrowediting="GridView1_RowEditing"
onrowupdating="GridView1_RowUpdating"
onrowcancelingedit="GridView1_RowCancelingEdit"
>
<Columns>
<asp:TemplateField
HeaderText="操作">
<EditItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="True"
CommandName="Update"
Text="更新"></asp:LinkButton>
<asp:LinkButton ID="LinkButton2" runat="server"
CausesValidation="False"
CommandName="Cancel"
Text="取消"></asp:LinkButton>
</EditItemTemplate>
<ItemTemplate>
<asp:LinkButton ID="LinkButton1" runat="server" CausesValidation="False"
CommandName="Edit"
Text="更新"></asp:LinkButton>
<asp:LinkButton ID="LinkButton3" runat="server"
CausesValidation="False"
CommandName="Delete"
Text="删除"></asp:LinkButton>
</ItemTemplate>
</asp:TemplateField>
</Columns>
<FooterStyle
BackColor="#FFFFCC" ForeColor="#330099"
/>
<HeaderStyle
BackColor="#990000" Font-Bold="True" ForeColor="#FFFFCC"
/>
<PagerStyle
BackColor="#FFFFCC" ForeColor="#330099" HorizontalAlign="Center"
/>
<RowStyle
BackColor="White" ForeColor="#330099"
/>
<SelectedRowStyle
BackColor="#FFCC66" Font-Bold="True" ForeColor="#663399"
/>
<SortedAscendingCellStyle
BackColor="#FEFCEB" />
<SortedAscendingHeaderStyle BackColor="#AF0101"
/>
<SortedDescendingCellStyle BackColor="#F6F0C0"
/>
<SortedDescendingHeaderStyle BackColor="#7E0000" />
</asp:GridView>
</form>
</div>
</body>
</html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。