Files
17168ERP/web/test_asenumerable_check.aspx
2025-11-12 15:58:20 +08:00

29 lines
1.2 KiB
Plaintext

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test_asenumerable_check.aspx.cs" Inherits="test_asenumerable_check" %>
<!DOCTYPE html>
<html>
<head>
<title>AsEnumerable 修改檢測工具</title>
<style>
body { font-family: 'Consolas', monospace; margin: 20px; background: #1e1e1e; color: #d4d4d4; }
.success { color: #4ec9b0; font-weight: bold; }
.error { color: #f48771; font-weight: bold; }
.warning { color: #dcdcaa; font-weight: bold; }
.sql-box { background: #252526; padding: 15px; margin: 10px 0; border-left: 4px solid #007acc; }
.test-item { margin: 20px 0; padding: 15px; background: #2d2d30; border-radius: 4px; }
h2 { color: #4ec9b0; }
h3 { color: #dcdcaa; margin-top: 20px; }
pre { white-space: pre-wrap; word-wrap: break-word; }
</style>
</head>
<body>
<h1>🔍 AsEnumerable 修改檢測報告</h1>
<form runat="server">
<asp:Button ID="btnRunTest" runat="server" Text="▶ 執行檢測" OnClick="btnRunTest_Click"
style="padding: 10px 20px; font-size: 16px; cursor: pointer;" />
<hr />
<asp:Literal ID="litResult" runat="server"></asp:Literal>
</form>
</body>
</html>