📄 edit_friendtype.aspx
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Edit_FriendType.aspx.cs" Inherits="Edit_FriendType" %>
<!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>
<link href="css.css" type="text/css" rel="Stylesheet" />
</head>
<body style=" margin:0 0 0 0">
<form id="form1" runat="server">
<div>
<table style="width: 100%; border-collapse:collapse;" borderColor="#BED393" border="1">
<tr>
<td align="center" style=" background-color:#EDF3E1">
<font size="5px">通讯录分类管理</font></td>
</tr>
<tr>
<td align="center">
<asp:GridView ID="gridtypeview" Width="40%" runat="server" AutoGenerateColumns="False" OnRowEditing="gridtypeview_RowEditing" DataKeyNames="t_id" OnRowDataBound="gridtypeview_RowDataBound" OnRowDeleting="gridtypeview_RowDeleting" OnRowUpdating="gridtypeview_RowUpdating">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table width="100%">
<tr>
<td><%# DataBinder.Eval(Container.DataItem, "t_name")%></td>
<td style="width:200px">
<asp:ImageButton ID="btnedit" runat="server" CommandName="edit" ImageUrl="~/Images/edit.gif" />
<asp:ImageButton ID="btndelete" runat="server" CommandName="delete" ImageUrl="~/Images/a_delete.gif" />
</td>
</tr>
</table>
</ItemTemplate>
<EditItemTemplate>
<table width="100%">
<tr>
<td><asp:TextBox runat="server" Width="100px" ID="typename" Text='<%# DataBinder.Eval(Container.DataItem, "t_name")%>'></asp:TextBox></td>
<td align="center" style="width:200px" valign="middle">
<asp:ImageButton ID="btnedit" runat="server" CommandName="update" ImageUrl="~/Images/saveas.gif" />
<asp:ImageButton ID="btndelete" runat="server" CommandName="delete" ImageUrl="~/Images/a_delete.gif" />
</td>
</tr>
</table>
</EditItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</td>
</tr>
<tr>
<td align="center"></td>
</tr>
</table>
</div>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -