-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.aspx
More file actions
30 lines (27 loc) · 1.08 KB
/
test.aspx
File metadata and controls
30 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test.aspx.cs" Inherits="test" %>
<!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 runat="server">
<meta charset="utf-8" />
<title></title>
<link href="js/css/tailwind-utilities-2.2.19.min.css" rel="stylesheet">
</head>
<body>
<form id="form1" runat="server">
<div>
asp.net works ok ! 工作正常!<br />
<br />
此服务器日期格式是否正常:<br />
<br />
<asp:Label ID="Label1" runat="server"></asp:Label>
</div>
<br />
<br />
<div>远程出错详细信息是否正常
<asp:Button ID="Button1" runat="server" BackColor="#CCCCCC"
BorderColor="Silver" BorderStyle="None" Font-Size="9pt" onclick="Button1_Click"
Text="测试专用" CssClass="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 transition duration-300 shadow-md border-0" />
</div>
</form>
</body>
</html>