test,configLeft.aspx

来源:互联网 发布:手机画图软件 编辑:程序博客网 时间:2024/05/11 02:59

 <%@ Page Language="C#" AutoEventWireup="true" CodeFile="ConfigLeft.aspx.cs" Inherits="Config_ConfigLeft" %>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title></title>
    <link href="../Public/StyleSheet.css" type="text/css" rel="Stylesheet" />
    <script language="javascript" type="text/javascript" src="../Public/left_Function.js" ></script>
</head>
<body>
    <form id="DataForm" runat="server">
    <table border="0" cellpadding="0" cellspacing="0" style="width: 100%; height:100%;" class="left_Content">
        <tr>
            <td class="left_FunctionTitle" align="center"><%returnLanguageStr("Menu_Config"); %></td>
        </tr>
        <tr>
            <td style="height:100%;" align="center">
                <table border="0" cellpadding="0" cellspacing="2" style="width: 100%; height:100%;">
                    <tr>
                        <td style="height:17px;">
                            <table cellpadding="0" cellspacing="0" style="width: 100%; height:100%;" class="left_tableMenuborder">
                                <tr>
                                    <td class="left_scrollingControl">
                                        <table border="0" cellpadding="0" cellspacing="0" style="width: 15px; height:15px;">
                                            <tr>
                                                <td style="height:7px;"><img alt="<%returnLanguageStr("String_MoveUp"); %>" onmousemove="moveUp()" src="../Images/scrollingUp.gif" /></td>
                                            </tr>
                                            <tr>
                                                <td style="height:1px;"></td>
                                            </tr>
                                            <tr>
                                                <td style="height:7px;"><img alt="<%returnLanguageStr("String_MoveDown"); %>" onmousemove="moveDown()" src="../Images/scrollingDown.gif" /></td>
                                            </tr>
                                        </table>
                                    </td>
                                </tr>
                            </table>
                        </td>
                    </tr>
                    <tr>
                        <td valign="top" style="height:100%;">
                        <asp:Panel ID="PanelLeftMenu" CssClass="Scroll" runat="server" ScrollBars="None">
                            <asp:Table ID="FunctionTable" runat="server">
                            </asp:Table>
                        </asp:Panel>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
    </form>
</body>
</html>
<script language="javascript" type="text/javascript">
PanelLeftMenu.style.height = document.body.scrollTop + document.body.clientHeight - 55 ;
</script>

原创粉丝点击