Files
g.hnyhua.cn/Mtxfw.shop/_Admin/admin_Download_add.aspx

59 lines
2.3 KiB
Plaintext
Raw Permalink Normal View History

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="admin_Download_add.aspx.cs" Inherits="Mtxfw.shop._Admin.admin_Download_add" %>
<%@ Register Assembly="FredCK.FCKeditorV2" Namespace="FredCK.FCKeditorV2" TagPrefix="FCKeditorV2" %>
<!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" />
<script type="text/javascript">
var checkForm = function () {
var Text_Title = document.getElementById('Text_Title');
if (Text_Title.value == '') {
alert('请输入下载文件名称!'); return false;
}
return true;
};
</script>
</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%" border="0" cellspacing="1" cellpadding="0">
<tr>
<th width="18%">&nbsp;下载文件名称:</th>
<td>
<asp:TextBox ID="Text_Title" Columns="40" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<th width="18%">&nbsp;文件路径:</th>
<td>
<P><asp:textbox id="filepath" runat="server" Columns="40"></asp:textbox></P>
<P><INPUT id="uploadfile" type="file" name="uploadfile" runat="server"><FONT face="宋体">&nbsp;</FONT>
<asp:button id="Button5" runat="server" Text="上传" onclick="Button5_Click"></asp:button></P>
<asp:HiddenField ID="Hidd_C" runat="server" />
</td>
</tr>
<tr>
<td colspan="2">&nbsp;
<asp:Button ID="Btn_Insert" runat="server" CssClass="btn" Text="添加" OnClientClick="return checkForm();" />
<asp:Button ID="Btn_Update" runat="server" CssClass="btn" Text="更新" OnClientClick="return checkForm();" />
<input id="btn_back" type="reset" value="返回" onclick="history.go(-1)" class="btn" />
<asp:HiddenField ID="Hidd_Url" runat="server" />
</td>
</tr>
</table>
</div>
</div>
</form>
</body>
</html>