AddProduct.aspx
资源名称:SHOPASP.rar [点击查看]
上传用户:xiecaij
上传日期:2015-02-08
资源大小:2016k
文件大小:4k
源码类别:
百货/超市行业
开发平台:
ASP/ASPX
- <%@ Page language="c#" Codebehind="AddProduct.aspx.cs" AutoEventWireup="false" Inherits="admin.AddProduct" %>
- <%@ Register TagPrefix="Admin" TagName="AdminMenu" Src="AdminMenu.ascx" %>
- <HTML>
- <HEAD>
- <LINK href="styles.css" type="text/css" rel="stylesheet">
- </HEAD>
- <body bottomMargin="0" leftMargin="0" background="../images/sitebkgrdnogray.gif" topMargin="0"
- rightMargin="0" marginwidth="0" marginheight="0">
- <table height="100%" cellSpacing="0" cellPadding="0" width="100%" border="0">
- <tr>
- <td vAlign="top" width="145" bgColor="#9999cc" height="100%"><ADMIN:ADMINMENU id="Menu1" runat="server"></ADMIN:ADMINMENU><IMG height="1" src="images/1x1.gif" width="145">
- </td>
- <td vAlign="top" align="center" width="700">
- <table height="100%" width="100%" align="center" border="0">
- <tr vAlign="top">
- <td align="center">
- <table align="center" width="100%" border="0" height="100%">
- <tr valign="top">
- <td align="center">
- <table align="center" width="100%" border="0">
- <tr valign="top">
- <td align="center">
- <table border="1" bordercolor="#ffcc66">
- <tr>
- <td>
- <form runat="server" ID="Form1">
- <TABLE id="Table1" cellSpacing="1" cellPadding="1" width="300" border="0">
- <TR>
- <TD noWrap colSpan="3" align="center" bgcolor="#ffcc66"><FONT face="宋体">新增商品</FONT></TD>
- </TR>
- <TR>
- <TD noWrap align="center" bgColor="#ffcc66" colSpan="3">
- <asp:Label id="MyError" runat="server" ForeColor="#C00000"></asp:Label></TD>
- </TR>
- <TR>
- <TD noWrap><FONT face="宋体">商品名称:</FONT></TD>
- <TD noWrap>
- <asp:TextBox id="ProductName" runat="server"></asp:TextBox></TD>
- <TD noWrap>
- <asp:RequiredFieldValidator id="RequiredFieldValidator1" runat="server" ErrorMessage="*" ControlToValidate="ProductName"></asp:RequiredFieldValidator></TD>
- </TR>
- <TR>
- <TD noWrap><FONT face="宋体">价格:</FONT></TD>
- <TD noWrap>
- <asp:TextBox id="Price" runat="server"></asp:TextBox></TD>
- <TD noWrap>
- <asp:RequiredFieldValidator id="RequiredFieldValidator2" runat="server" ErrorMessage="*" ControlToValidate="Price"></asp:RequiredFieldValidator></TD>
- </TR>
- <TR>
- <TD noWrap><FONT face="宋体">介绍:</FONT></TD>
- <TD noWrap>
- <asp:TextBox id="Intro" runat="server" TextMode="MultiLine" Height="88px" MaxLength="500" Rows="40"></asp:TextBox></TD>
- <TD noWrap>
- <asp:RequiredFieldValidator id="RequiredFieldValidator3" runat="server" ErrorMessage="*" ControlToValidate="Intro"></asp:RequiredFieldValidator></TD>
- </TR>
- <TR>
- <TD noWrap><FONT face="宋体">商品类型:</FONT></TD>
- <TD noWrap><FONT face="宋体">
- <asp:DropDownList id="ListCat" runat="server"></asp:DropDownList></FONT></TD>
- <TD noWrap></TD>
- </TR>
- <TR>
- <TD noWrap colSpan="3" align="center"><FONT face="宋体">
- <asp:Button id="Add" runat="server" Text="添加" Width="56px"></asp:Button></FONT></TD>
- </TR>
- </TABLE>
- </form>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- </table>
- </body>
- </HTML>