RoadFlow2.1 临时演示

Edit.aspx 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Edit.aspx.cs" Inherits="WebForm.Platform.WorkFlowButtons.Edit" %>
  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;">
  14. 按钮名称:
  15. </th>
  16. <td>
  17. <input type="text" name="Title1" id="Title1" class="mytext" runat="server" validate="empty" style="width: 75%" />
  18. </td>
  19. </tr>
  20. <tr>
  21. <th>
  22. 按钮图标:
  23. </th>
  24. <td>
  25. <input type="text" name="Ico" id="Ico" class="myico" source="/Images/ico" runat="server" style="width: 75%"/>
  26. </td>
  27. </tr>
  28. <tr>
  29. <th>
  30. 执行脚本:
  31. </th>
  32. <td>
  33. <textarea class="mytext" name="Script" id="Script" rows="1" cols="1" style="width:90%; height:180px; line-height:16px; color:Blue; font-family:Courier New; padding:5px;" runat="server"></textarea>
  34. </td>
  35. </tr>
  36. <tr>
  37. <th>
  38. 按钮说明:
  39. </th>
  40. <td>
  41. <textarea class="mytext" name="Note" id="Note" rows="1" cols="1" style="width:90%; height:50px;" runat="server"></textarea>
  42. </td>
  43. </tr>
  44. </table>
  45. <div class="buttondiv">
  46. <input type="submit" value="确定保存" class="mybutton" onclick="return new RoadUI.Validate().validateForm(document.forms[0]);" />
  47. <input type="button" class="mybutton" value="取消关闭" style="margin-left: 5px;" onclick="new RoadUI.Window().close();" />
  48. </div>
  49. </form>
  50. </body>
  51. </html>