RoadFlow2.1 临时演示

BodyAdd.aspx 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="BodyAdd.aspx.cs" Inherits="WebForm.Platform.Members.BodyAdd" %>
  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. <script type="text/javascript">
  8. var win = new RoadUI.Window();
  9. var validate = new RoadUI.Validate();
  10. </script>
  11. </head>
  12. <body>
  13. <form id="form1" runat="server">
  14. <br />
  15. <table cellpadding="0" cellspacing="1" border="0" width="95%" class="formtable">
  16. <tr>
  17. <th style="width:80px;">名称:</th>
  18. <td><input type="text" id="Name" name="Name" class="mytext" validate="empty,minmax" runat="server" max="100" style="width:75%" /></td>
  19. </tr>
  20. <tr>
  21. <th style="width:80px;">类型:</th>
  22. <td><asp:Literal ID="TypeRadios" runat="server"></asp:Literal></td>
  23. </tr>
  24. <tr>
  25. <th style="width:80px;">状态:</th>
  26. <td><asp:Literal ID="StatusRadios" runat="server"></asp:Literal></td>
  27. </tr>
  28. <tr>
  29. <th style="width:80px;">备注:</th>
  30. <td><textarea id="Note" name="Note" class="mytext" style="width:90%; height:50px;" runat="server"></textarea></td>
  31. </tr>
  32. <tr id="deptmove_tr" style="display:none;">
  33. <th style="width:80px;">移动到:</th>
  34. <td>
  35. <table cellpadding="0" cellspacing="1" border="0">
  36. <tr>
  37. <td><input type="text" style="width:220px;" class="mymember" id="deptmove" more="false" user="false" station="true" dept="true" unit="true" runat="server"/></td>
  38. <td><input type="submit" class="mybutton" name="Move" value="确定移动" /></td>
  39. </tr>
  40. </table>
  41. </td>
  42. </tr>
  43. </table>
  44. <div style="width:95%; margin:10px auto 10px auto; text-align:center;">
  45. <input type="submit" class="mybutton" onclick="return validate.validateForm(document.forms[0]);" name="Save" value="保存" />
  46. <input type="button" class="mybutton" value="返回" onclick="window.location='Body.aspx'+'<%=Request.Url.Query%>';" />
  47. </div>
  48. </form>
  49. </body>
  50. </html>