46 lines
2.0 KiB
Plaintext
46 lines
2.0 KiB
Plaintext
<%@ Page Language="C#" MasterPageFile="~/WebMasterPages/MoonPro.master" AutoEventWireup="true"
|
|
Inherits="MP_ADM.test" Title="TEST Page" CodeBehind="test.aspx.cs" %>
|
|
|
|
<%@ Register Assembly="SteamWare" Namespace="SteamWare" TagPrefix="cc1" %>
|
|
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
|
|
<table>
|
|
<tr valign="baseline">
|
|
<td>
|
|
<asp:Image ID="Image1" runat="server" ImageUrl="~/images/bg-menu-main.png" Width="150%"
|
|
Height="50px" />
|
|
</td>
|
|
<td>
|
|
<asp:Image ID="Image4" runat="server" ImageUrl="~/images/bg-menu-main.png" Width="50%"
|
|
Height="20px" />
|
|
</td>
|
|
<td>
|
|
<asp:Image ID="Image2" runat="server" ImageUrl="~/images/bg-menu-main.png" Width="100%"
|
|
Height="80px" />
|
|
</td>
|
|
<td>
|
|
<asp:Image ID="Image3" runat="server" ImageUrl="~/images/bg-menu-main.png" Width="30px"
|
|
Height="50px" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<%--<asp:HiddenField runat="server" ID="HiddenID" />
|
|
|
|
<script type="text/javascript" language="javascript">
|
|
document.getElementById("ctl00_ContentPlaceHolder1_HiddenID").value = "w=" + getClientWidth() + ", h=" + getClientHeight();
|
|
window.onresize = updateValues;
|
|
function updateValues() {
|
|
document.getElementById("ctl00_ContentPlaceHolder1_HiddenID").value = "w=" + getClientWidth() + ", h=" + getClientHeight();
|
|
}
|
|
|
|
function getClientWidth() {
|
|
return document.compatMode == 'CSS1Compat' && !window.opera ? document.documentElement.clientWidth : document.body.clientWidth;
|
|
}
|
|
|
|
function getClientHeight() {
|
|
return document.compatMode == 'CSS1Compat' && !window.opera ? document.documentElement.clientHeight : document.body.clientHeight;
|
|
}
|
|
</script>
|
|
|
|
<asp:Button ID="Button1" runat="server" Text="Button" />--%>
|
|
<asp:Label runat="server" ID="lblOut" />
|
|
</asp:Content> |