| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="WebForm.Platform.Dictionary.Add" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <br />
- <table cellpadding="0" cellspacing="1" border="0" width="95%" class="formtable">
- <tr>
- <th style="width:80px;">标题:</th>
- <td><input type="text" id="Title1" name="Title1" class="mytext" runat="server" validate="empty" maxlength="100" style="width:70%" /></td>
- </tr>
- <tr>
- <th style="width:80px;">唯一代码:</th>
- <td><input type="text" id="Code" name="Code" class="mytext" validate="canempty,ajax" validate_url="CheckCode.ashx" runat="server" maxlength="100" style="width:70%" /></td>
- </tr>
- <tr>
- <th style="width:80px;">值:</th>
- <td><input type="text" id="Values" name="Values" class="mytext" runat="server" maxlength="100" style="width:70%" /></td>
- </tr>
- <tr>
- <th style="width:80px;">备注:</th>
- <td><textarea id="Note" name="Note" class="mytext" runat="server" style="width:90%; height:50px;"></textarea></td>
- </tr>
- <tr>
- <th style="width:80px;">其它:</th>
- <td><textarea id="Other" name="Other" class="mytext" runat="server" style="width:90%; height:50px;"></textarea></td>
- </tr>
- </table>
- <div style="width:95%; margin:10px auto 10px auto; text-align:center;">
- <input type="submit" class="mybutton" value="保存" onclick="return new RoadUI.Validate().validateForm(document.forms[0]);" />
- <input type="button" class="mybutton" value="返回" onclick="window.location='Body.aspx<%=Request.Url.Query%>';" />
- </div>
- </form>
- <script type="text/javascript">
- </script>
- </body>
- </html>
|