deal_list.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:7k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="deal_list.aspx.cs" Inherits="web_fair_deal_list" %>
- <!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">
- <title>无标题页</title>
- <link href="../../css/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <center>
- </center>
- <center>
- <asp:Label ID="LblTitle" runat="server" Text="處理與通知" Font-Bold="True" Font-Size="Medium"></asp:Label>
- </center>
- <center>
- <br />
- <asp:Table runat="server" ID="TblFlow" Width="580px" Visible="False">
- <asp:TableHeaderRow ID="TableHeaderRow1" BackColor="Menu" runat="server">
- <asp:TableHeaderCell ID="TableHeaderCell1" runat="server">寄件者</asp:TableHeaderCell>
- <asp:TableHeaderCell ID="TableHeaderCell2" runat="server">所屬部門</asp:TableHeaderCell>
- <asp:TableHeaderCell ID="TableHeaderCell3" runat="server">接收日期</asp:TableHeaderCell>
- <asp:TableHeaderCell ID="TableHeaderCell4" runat="server"></asp:TableHeaderCell>
- </asp:TableHeaderRow>
- </asp:Table>
- <br />
- <asp:Panel ID="PnlFair" runat="server" Visible="false">
- <asp:Table ID="TblFair" runat="server" Width="580px">
- <asp:TableHeaderRow BackColor="menu">
- <asp:TableHeaderCell ColumnSpan="2" BorderWidth="1px" HorizontalAlign="Left">費用申請表單</asp:TableHeaderCell>
- </asp:TableHeaderRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px" Width="130px">單號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtFormNo" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請人姓名</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtEmpName" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請人工號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtEmpNo" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請日期</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtApplyDate" runat="server" Enabled="false" Width="300px"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">主旨</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtSubject" runat="server" Width="300px" Enabled="false"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">申請金額</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtAmount" runat="server" Width="300px" Enabled="false"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow Visible="false">
- <asp:TableCell BorderWidth="1px">差旅單號</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:HyperLink ID="HlFormNo" runat="server"></asp:HyperLink>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow>
- <asp:TableCell BorderWidth="1px">備註</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:TextBox ID="TxtRemark" runat="server" Width="400px" Enabled="false" TextMode="MultiLine" Rows="5"></asp:TextBox>
- </asp:TableCell>
- </asp:TableRow>
- <asp:TableRow Visible="false">
- <asp:TableCell BorderWidth="1px">圖檔</asp:TableCell>
- <asp:TableCell BorderWidth="1px" HorizontalAlign="Left">
- <asp:Panel ID="PnlPicture" runat="server" HorizontalAlign="Left">
- </asp:Panel>
- </asp:TableCell>
- </asp:TableRow>
- </asp:Table>
- </asp:Panel>
- <br />
- <asp:Panel ID="PnlDeal" runat="server" Style="position: relative" Visible="false">
- <table border="1" style="position: relative" width="580">
- <tr>
- <td align="center" style="width: 56px">
- </td>
- <td align="left">
- <asp:RadioButtonList ID="RbAgree" runat="server" AutoPostBack="True" BorderStyle="None"
- OnSelectedIndexChanged="RbAgree_SelectedIndexChanged" RepeatDirection="Horizontal"
- Style="position: relative" Width="163px">
- <asp:ListItem Selected="True" Value="Y">同意</asp:ListItem>
- <asp:ListItem Value="N">不同意</asp:ListItem>
- </asp:RadioButtonList></td>
- </tr>
- <tr>
- <td align="center" style="width: 56px">
- 意見:
- </td>
- <td align="left">
- <asp:TextBox ID="TxtComment" runat="server" BorderStyle="None" Rows="5" Style="position: relative"
- TextMode="MultiLine" Width="500px">已同意</asp:TextBox></td>
- </tr>
- <tr>
- <td align="center" colspan="2">
- <asp:Button ID="BtnOk" runat="server" OnClick="BtnOk_Click" Style="position: relative"
- Text="送件" /></td>
- </tr>
- </table>
- </asp:Panel>
- </center>
- </div>
- </form>
- </body>
- </html>