📄 www.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="www.aspx.cs" Inherits="www" %>
<!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>
<form id="form1" runat="server">
<div style="text-align: center">
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:DataConnectionString %>"
DeleteCommand="DELETE FROM [主设备] WHERE [ID] = @ID" InsertCommand="INSERT INTO [主设备] ([基站], [区域]) VALUES (@基站, @区域)"
SelectCommand="SELECT [ID], [基站], [区域] FROM [主设备]" UpdateCommand="UPDATE [主设备] SET [基站] = @基站, [区域] = @区域 WHERE [ID] = @ID">
<DeleteParameters>
<asp:Parameter Name="ID" Type="Int32" />
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="基站" Type="String" />
<asp:Parameter Name="区域" Type="String" />
<asp:Parameter Name="ID" Type="Int32" />
</UpdateParameters>
<InsertParameters>
<asp:Parameter Name="基站" Type="String" />
<asp:Parameter Name="区域" Type="String" />
</InsertParameters>
</asp:SqlDataSource>
<asp:FormView ID="FormView1" runat="server" DataKeyNames="ID" DataSourceID="SqlDataSource1">
<EditItemTemplate>
ID:
<asp:Label ID="IDLabel1" runat="server" Text='<%# Eval("ID") %>'></asp:Label><br />
基站:
<asp:TextBox ID="基站TextBox" runat="server" Text='<%# Bind("基站") %>'>
</asp:TextBox><br />
区域:
<asp:TextBox ID="区域TextBox" runat="server" Text='<%# Bind("区域") %>'>
</asp:TextBox><br />
<asp:LinkButton ID="UpdateButton" runat="server" CausesValidation="True" CommandName="Update"
Text="更新">
</asp:LinkButton>
<asp:LinkButton ID="UpdateCancelButton" runat="server" CausesValidation="False" CommandName="Cancel"
Text="取消">
</asp:LinkButton>
</EditItemTemplate>
<InsertItemTemplate>
基站:
<asp:TextBox ID="基站TextBox" runat="server" Text='<%# Bind("基站") %>'>
</asp:TextBox><br />
区域:
<asp:TextBox ID="区域TextBox" runat="server" Text='<%# Bind("区域") %>'>
</asp:TextBox><br />
<asp:LinkButton ID="InsertButton" runat="server" CausesValidation="True" CommandName="Insert"
Text="插入">
</asp:LinkButton>
<asp:LinkButton ID="InsertCancelButton" runat="server" CausesValidation="False" CommandName="Cancel"
Text="取消">
</asp:LinkButton>
</InsertItemTemplate>
<ItemTemplate>
ID:
<asp:Label ID="IDLabel" runat="server" Text='<%# Eval("ID") %>'></asp:Label><br />
基站:
<asp:Label ID="基站Label" runat="server" Text='<%# Bind("基站") %>'></asp:Label><br />
区域:
<asp:Label ID="区域Label" runat="server" Text='<%# Bind("区域") %>'></asp:Label><br />
<asp:LinkButton ID="EditButton" runat="server" CausesValidation="False" CommandName="Edit"
Text="编辑">
</asp:LinkButton>
<asp:LinkButton ID="DeleteButton" runat="server" CausesValidation="False" CommandName="Delete"
Text="删除">
</asp:LinkButton>
<asp:LinkButton ID="NewButton" runat="server" CausesValidation="False" CommandName="New"
Text="新建">
</asp:LinkButton>
</ItemTemplate>
</asp:FormView>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -