FineUI/FineUI.Examples/common/source_file.aspx
2013-11-01 14:13:51 +08:00

37 lines
938 B
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="source_file.aspx.cs" Inherits="FineUI.Examples.source_file" %>
<%@ Register Assembly="Wilco.SyntaxHighlighter" Namespace="Wilco.Web.SyntaxHighlighting"
TagPrefix="cc1" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<style type="text/css">
body
{
margin: 0px;
padding: 0px;
font-size: 12px;
background-color: White;
}
pre span
{
font-family: consolas,arial,tahoma,verdana,helvetica;
}
.shl_ln
{
border-right: 1px solid #999;
padding-right: 2px;
color: #999;
margin-right: 2px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<cc1:SyntaxHighlighter ID="SyntaxHighlighter1" runat="server">
</cc1:SyntaxHighlighter>
</form>
</body>
</html>