Initial project's source code check-in.
This commit is contained in:
commit
b03b0b373f
4573 changed files with 981205 additions and 0 deletions
82
WebsitePanel/Sources/WebsitePanel.Server/Default.aspx
Normal file
82
WebsitePanel/Sources/WebsitePanel.Server/Default.aspx
Normal file
|
@ -0,0 +1,82 @@
|
|||
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebsitePanel.Server.DefaultPage" %>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" >
|
||||
<head id="Head1" runat="server">
|
||||
<title>WebsitePanel Server</title>
|
||||
<style>
|
||||
BODY
|
||||
{
|
||||
margin:0px;
|
||||
padding: 10px;
|
||||
font-family: Tahoma, Arial;
|
||||
font-size: 10pt;
|
||||
}
|
||||
|
||||
.Content
|
||||
{
|
||||
width: 400px;
|
||||
margin-top: 30px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
H1
|
||||
{
|
||||
font-family: Arial, Tahoma;
|
||||
font-size: 18pt;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 5px;
|
||||
font-weight: bold;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
TABLE
|
||||
{
|
||||
background-color: #e0e0e0;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
TD
|
||||
{
|
||||
padding: 8px;
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
.FieldName
|
||||
{
|
||||
width: 100px;
|
||||
font-weight: bold;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form id="AspForm" runat="server">
|
||||
<div class="Content">
|
||||
<div>
|
||||
<asp:Image ID="imgLogo" runat="server" />
|
||||
</div>
|
||||
|
||||
<h1>Server</h1>
|
||||
|
||||
<table cellpadding="0" cellspacing="1">
|
||||
<tr>
|
||||
<td class="FieldName">Status:</td>
|
||||
<td>Running</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="FieldName">Version:</td>
|
||||
<td><asp:Literal id="litVersion" runat="server"></asp:Literal></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="FieldName">URL:</td>
|
||||
<td><asp:Literal id="litUrl" runat="server"/></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="FieldName">ASP.NET Mode:</td>
|
||||
<td><asp:Literal id="litAspNetMode" runat="server"/></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue