RoadFlow2.1 临时演示

AddRole.aspx 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="AddRole.aspx.cs" Inherits="WebForm.Platform.RoleApp.AddRole" %>
  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="99%" class="formtable">
  12. <tr>
  13. <th style="width:80px;">角色名称:</th>
  14. <td><input type="text" id="Name" name="Name" class="mytext" runat="server" validate="empty" style="width:75%" /></td>
  15. </tr>
  16. <tr>
  17. <th style="width:80px;">角色成员:</th>
  18. <td><input type="text" id="UseMember" name="UseMember" runat="server" class="mymember" value="" style="width:65%"/></td>
  19. </tr>
  20. <tr>
  21. <th style="width:80px;">备注说明:</th>
  22. <td><textarea class="mytext" id="Note" name="Note" cols="1" rows="1" style="width:95%; height:50px;" runat="server"></textarea></td>
  23. </tr>
  24. </table>
  25. <div class="buttondiv">
  26. <input type="submit" value="确认保存" class="mybutton" />
  27. </div>
  28. </form>
  29. </body>
  30. </html>