chore: 首次簽入 Thinkyu ASP.NET 專案

- 加入 Visual Studio / ASP.NET .gitignore
- 排除建置輸出、IDE 設定、NuGet packages、大型 MSI 安裝檔
This commit is contained in:
2026-09-10 09:42:37 +08:00
commit 577060bc78
2496 changed files with 501389 additions and 0 deletions
@@ -0,0 +1,23 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="ShowLargePicture1.aspx.cs"
Inherits="Education.Forms.基本資料.ShowLargePicture1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>大圖檢視</title>
</head>
<body>
<form id="form1" runat="server">
<div style="margin: auto; text-align: center; vertical-align: middle;">
<asp:Image ID="Image1" runat="server" />
</div>
</form>
<script type="text/javascript">
window.onload = function () {
window.resizeTo(screen.width, screen.height);
};
</script>
</body>
</html>