| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Sort.aspx.cs" Inherits="WebForm.Platform.RoleApp.Sort" %>
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head runat="server">
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title></title>
- </head>
- <body>
- <form id="form1" runat="server">
- <br />
- <div style="padding-left:7px; width:83%; margin:0 auto; height:auto;" id="sortdiv">
- <%
- foreach (var app in RoleAppList)
- {
- %>
- <ul class="sortul">
- <input type="hidden" value="<%=app.ID %>" name="sortapp" />
- <%=app.Title %>
- </ul>
- <%}%>
- </div>
- <div class="buttondiv">
- <input type="submit" class="mybutton" value="保存排序" />
- <input type="button" class="mybutton" value="返回" onclick="re();" />
- </div>
- </form>
- <script type="text/javascript">
- var win = new RoadUI.Window();
- $(function ()
- {
- new RoadUI.DragSort($("#sortdiv"));
- });
- function re()
- {
- window.location = "Body.aspx" + "<%=Request.Url.Query%>";
- }
- </script>
- </body>
- </html>
|