RoadFlow2.1 临时演示

Add.aspx 2.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Add.aspx.cs" Inherits="WebForm.Platform.Dictionary.Add" %>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head runat="server">
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <title></title>
  7. </head>
  8. <body>
  9. <form id="form1" runat="server">
  10. <br />
  11. <table cellpadding="0" cellspacing="1" border="0" width="95%" class="formtable">
  12. <tr>
  13. <th style="width:80px;">标题:</th>
  14. <td><input type="text" id="Title1" name="Title1" class="mytext" runat="server" validate="empty" maxlength="100" style="width:70%" /></td>
  15. </tr>
  16. <tr>
  17. <th style="width:80px;">唯一代码:</th>
  18. <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>
  19. </tr>
  20. <tr>
  21. <th style="width:80px;">值:</th>
  22. <td><input type="text" id="Values" name="Values" class="mytext" runat="server" maxlength="100" style="width:70%" /></td>
  23. </tr>
  24. <tr>
  25. <th style="width:80px;">备注:</th>
  26. <td><textarea id="Note" name="Note" class="mytext" runat="server" style="width:90%; height:50px;"></textarea></td>
  27. </tr>
  28. <tr>
  29. <th style="width:80px;">其它:</th>
  30. <td><textarea id="Other" name="Other" class="mytext" runat="server" style="width:90%; height:50px;"></textarea></td>
  31. </tr>
  32. </table>
  33. <div style="width:95%; margin:10px auto 10px auto; text-align:center;">
  34. <input type="submit" class="mybutton" value="保存" onclick="return new RoadUI.Validate().validateForm(document.forms[0]);" />
  35. <input type="button" class="mybutton" value="返回" onclick="window.location='Body.aspx<%=Request.Url.Query%>';" />
  36. </div>
  37. </form>
  38. <script type="text/javascript">
  39. </script>
  40. </body>
  41. </html>