加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ClientLogger.ascx 628 Bytes
一键复制 编辑 原始数据 按行查看 历史
GrapeCity 提交于 2014-07-21 11:05 . Init
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="ClientLogger.ascx.cs"
Inherits="ControlExplorer.ClientLogger" %>
<b><asp:Label runat="server" ID="Label1" Text="Log"></asp:Label></b>
<div id="sampleLog" style="height: 100px; width: 100%; margin-bottom: 10px; overflow: auto;
border: 1px dashed gray;">
</div>
<script language="javascript" type="text/javascript">
function ClientLogger() {
}
ClientLogger.prototype = {
message: function (msg) {
$("#sampleLog").html("[" + new Date().toTimeString() + "] " + msg + "<br />" + $("#sampleLog").html());
}
}
window.log = new ClientLogger();
</script>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化