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,62 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/PopupForm.Master" AutoEventWireup="true"
CodeBehind="訓練效益個人.aspx.cs" Inherits="Education.Forms.辦訓狀況.訓練效益個人" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<asp:ObjectDataSource ID="ds效益追蹤個人" runat="server"
OldValuesParameterFormatString="original_{0}" SelectMethod="Select效益追蹤名單"
TypeName="Education.DAC_課程報名" OnObjectCreating="ds效益追蹤個人_ObjectCreating">
<SelectParameters>
<asp:QueryStringParameter Name="訓練課程編號" QueryStringField="id" Type="Int32" />
<asp:QueryStringParameter Name="站別編號" QueryStringField="place" Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
<span class="ErrorMessage">請注意:<br />
1. 有出席課程的人員才會出現在本表的填寫。<br />
2. 必須「是否有成效」以及「有顯見成效或需再加強地方」均選擇與填寫才會儲存。
</span><br />
<asp:DataList ID="DataList1" runat="server" DataSourceID="ds效益追蹤個人"
OnItemDataBound="DataList1_ItemDataBound">
<HeaderTemplate>
<table class="autowidth" style="border-collapse:collapse">
<tr>
<th>職稱</th>
<th>姓名</th>
<th>是否有成效</th>
<th>有顯見成效或需再加強地方</th>
<th>本次儲存</th>
</tr>
</HeaderTemplate>
<ItemTemplate>
<tr>
<td class="datainput">
<asp:HiddenField ID="hf學員編號" runat="server" Value='<%# Eval("學員編號") %>' />
<asp:Label ID="lb職稱" runat="server" Text='<%# Eval("職務名稱") %>'></asp:Label>
</td>
<td class="datainput">
<asp:Label ID="lb學員姓名" runat="server" Text='<%# Eval("學員姓名") %>'></asp:Label>
</td>
<td class="datainput">
<asp:RadioButtonList ID="rbl是否有成效" runat="server" RepeatDirection="Horizontal">
<asp:ListItem Text="未填寫" Value="" style="display: none"></asp:ListItem>
<asp:ListItem Text="是&nbsp;&nbsp;" Value="Y"></asp:ListItem>
<asp:ListItem Text="否" Value="N"></asp:ListItem>
</asp:RadioButtonList>
</td>
<td class="datainput">
<asp:TextBox ID="txt成效說明" runat="server" Columns="80" MaxLength="100"></asp:TextBox>
</td>
<td style="text-align:center;">
<asp:Label ID="lbSave" runat="server" EnableViewState="false" CssClass="ErrorMessage"></asp:Label>
</td>
</tr>
</ItemTemplate>
<FooterTemplate>
</table>
</FooterTemplate>
</asp:DataList>
<asp:LinkButton ID="btnSave" runat="server" CssClass="button blue100"
OnClick="btnSave_Click">確定儲存</asp:LinkButton>&nbsp;
<asp:Label ID="lbMessage" runat="server" Text="" EnableViewState="false" CssClass="ErrorMessage"></asp:Label>
</asp:Content>