55 lines
1.9 KiB
Plaintext
55 lines
1.9 KiB
Plaintext
|
|
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_link_add.aspx.cs" Inherits="Mtxfw._admin.admin_link_add" %>
|
||
|
|
|
||
|
|
<!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/style.css" rel="stylesheet" type="text/css" />
|
||
|
|
<link href="css/Burgundy.css" rel="stylesheet" type="text/css" />
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form id="form1" runat="server">
|
||
|
|
<div class="main">
|
||
|
|
<div class="bt1">连接管理 - <%=TitName %></div>
|
||
|
|
<div class="bt2">
|
||
|
|
<div class="clear"></div>
|
||
|
|
</div>
|
||
|
|
<div class="bt3">
|
||
|
|
<table width="100%" class="addtable">
|
||
|
|
<tr>
|
||
|
|
<th width="10%"> 连接名称:</th>
|
||
|
|
<td>
|
||
|
|
<asp:TextBox ID="Text_LinkName" Columns="40" runat="server"></asp:TextBox>
|
||
|
|
<span id="Msg"></span>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th> 连接地址:</th>
|
||
|
|
<td>
|
||
|
|
<asp:TextBox ID="Text_LinkUrl" Text="http://" Columns="40" runat="server"></asp:TextBox>
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th> 连接地址:</th>
|
||
|
|
<td>
|
||
|
|
<asp:FileUpload ID="File_LinkImg" runat="server" style="border:1px solid #ccc;" />
|
||
|
|
<img id="Img_Img" runat="server" style="display:block; margin-top:4px;" />
|
||
|
|
<asp:HiddenField ID="Hidd_Img" runat="server" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<th> 连接地址:</th>
|
||
|
|
<td>
|
||
|
|
<asp:Button ID="Btn_Insert" runat="server" CssClass="savebtn" Text="添加" />
|
||
|
|
<asp:Button ID="Btn_Update" runat="server" CssClass="savebtn" Text="更新" />
|
||
|
|
<input id="btn_back" type="button" value="返回" class="returnbtn" onclick="history.go(-1)" />
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
</body>
|
||
|
|
</html>
|