RoadFlow2.1 临时演示

Sort.aspx 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Sort.aspx.cs" Inherits="WebForm.Platform.Dictionary.Sort" %>
  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. <div style="width:82%; margin:0 auto; height:auto;" id="sortdiv">
  12. <%foreach (var dict in DictList){ %>
  13. <ul class="sortul">
  14. <input type="hidden" value="<%=dict.ID %>" name="sort" />
  15. <%=dict.Title %>
  16. </ul>
  17. <%} %>
  18. </div>
  19. <div class="buttondiv">
  20. <input type="submit" class="mybutton" value="保存排序" />
  21. <input type="button" class="mybutton" value="返回" onclick="window.location='Body.aspx<%=Request.Url.Query%>';" />
  22. </div>
  23. </form>
  24. <script type="text/javascript">
  25. var win = new RoadUI.Window();
  26. $(function ()
  27. {
  28. new RoadUI.DragSort($("#sortdiv"));
  29. });
  30. </script>
  31. </body>
  32. </html>