1.html <HTML> <HEAD> <title>movegrid</title> <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1"> <meta name="CODE_LANGUAGE" Content="C#"> <meta name="vs_defaultClientScript" content="JavaScript"> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5"> <LINK href="movegrid.css" type="text/css" rel="stylesheet"> <script src="movegrid.js"></script> </HEAD> <body MS_POSITIONING="GridLayout"> <form id="Form1" method="post" runat="server"> <asp:datagrid id="PowerTable" runat="server" BorderColor="#CC9966" BorderStyle="None" BorderWidth="1px" BackColor="White" CellPadding="4"> <FooterStyle ForeColor="#330099" BackColor="#FFFFCC"></FooterStyle> <SelectedItemStyle Font-Bold="True" ForeColor="#663399" BackColor="#FFCC66"></SelectedItemStyle> <ItemStyle ForeColor="#330099" BackColor="White"></ItemStyle> <HeaderStyle Font-Bold="True" ForeColor="#FFFFCC" BackColor="#990000"></HeaderStyle> <PagerStyle HorizontalAlign="Center" ForeColor="#330099" BackColor="#FFFFCC"></PagerStyle> </asp:datagrid> <p><input onclick="add_row(Main_Tab)" type="button" value="ins_row"> <input onclick="add_col(Main_Tab)" type="button" value="ins_col"> <input onclick="del_row(Main_Tab)" type="button" value="Del_row"> <input onclick="del_col(Main_Tab)" type="button" value="Del_col"> <input onclick="res_tab(Main_Tab)" type="button" value="Restore"> <input onclick="exp_tab(Main_Tab)" type="button" value="Export"> <br> <br> <br> ( Move: <input id="move" onclick="Move_up(Main_Tab)" type="button" value="Up"> <input id="move" onclick="Move_down(Main_Tab)" type="button" value="Down"> <input id="move" onclick="Move_left(Main_Tab)" type="button" value="Left"> <input id="move" onclick="Move_right(Main_Tab)" type="button" value="Right"> )</p> </form> </body></HTML> 2.cs 代码 public class MoveRow : System.Web.UI.Page } 3.js var Main_Tab = null;var cur_row = null;var cur_col = null;var cur_cell = null;var Org_con = "";var sort_col = null;var show_col = false;var charMode = true;var act_bgc = "#BEC5DE";var act_fc = "black";var cur_bgc = "#ccffcc";var cur_fc = "black";} 4.源代码下载/Files/singlepine/movegrid.rar 相关文章: 2022-12-23 2022-12-23 2022-12-23 2022-12-23 2021-04-06 2022-01-03 2021-11-21 2021-12-07