emoticonsgallery.aspx
来自「ASP.net网站开发四“酷”全书:新闻、论坛、电子商城、博客_源码」· ASPX 代码 · 共 44 行
ASPX
44 行
<%@ Page language="c#" Codebehind="EmoticonsGallery.aspx.cs" AutoEventWireup="false" Inherits="Dottext.Web.EmoticonsGallery" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>EmoticonGallery</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">
</HEAD>
<body MS_POSITIONING="FlowLayout">
<form id="Form1" method="post" runat="server">
<asp:Table id="EmoticonsTable" runat="server"></asp:Table>
</form>
<script language="javascript">
<!--
window.setTimeout(sizeDialog,1);
function sizeDialog()
{
dialogHeight = (parseInt(EmoticonsTable.offsetHeight) + 40) + "px";
dialogWidth = (parseInt(EmoticonsTable.offsetWidth) +20) + "px";
window.setTimeout(centerDialog,1);
}
function centerDialog()
{
var TopPosition = (screen.height) ? (screen.height-parseInt(dialogHeight))/2 : 0;
var LeftPosition = (screen.width) ? (screen.width-parseInt(dialogWidth))/2 : 0;
dialogTop = TopPosition;
dialogLeft = LeftPosition;
}
//-->
</script>
</body>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?