RoadFlow2.1 临时演示

Sort.aspx 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Sort.aspx.cs" Inherits="WebForm.Platform.Members.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 org in Orgs){%>
  13. <ul class="sortul">
  14. <input type="hidden" value="<%=org.ID %>" name="sort" />
  15. <%=org.Name %>
  16. </ul>
  17. <%}%>
  18. </div>
  19. <div style="width:400px; text-align:center; margin:0 auto; margin-top:10px;">
  20. <input type="submit" class="mybutton" name="save" value="保存排序" />
  21. <input type="button" class="mybutton" value="返回" onclick="re();" />
  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. function re()
  31. {
  32. window.location = "Body.aspx" + '<%=Request.Url.Query%>';
  33. }
  34. </script>
  35. </body>
  36. </html>