RoadFlow2.1 临时演示

CustomForm.aspx 1.0KB

123456789101112131415161718192021222324252627
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CustomForm.aspx.cs" Inherits="WebForm.Tests.CustomForm" %>
  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" action="CustomFormSave.aspx<%=Request.Url.Query %>" method="post">
  10. <div>
  11. <table class="formtable" style="width:98%; margin: 15px auto 0 auto;" cellpadding="0" cellspacing="1">
  12. <tr>
  13. <th style="width:60px;">标题:</th>
  14. <td><input type="text" class="mytext" id="title1" name="title1" runat="server" style="width:90%" validate="empty" errmsg="标题不能为空" /></td>
  15. </tr>
  16. <tr>
  17. <th>内容:</th>
  18. <td><textarea class="mytextarea" id="contents" name="contents" runat="server" style="width:99%;height:80px;"></textarea></td>
  19. </tr>
  20. </table>
  21. </div>
  22. </form>
  23. </body>
  24. </html>