-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOutput.aspx
56 lines (53 loc) · 2.04 KB
/
Output.aspx
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Output.aspx.cs" Inherits="Output" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>澳門政府公共部門公文翻譯系統</title>
<link href="CSS/StyleSheet.css" rel="stylesheet" type="text/css" />
<link href="CSS/jquery-ui.css" rel="stylesheet" />
<script src="JS/jquery-3.2.1.min.js"></script>
<script src="JS/jquery-ui.js"></script>
<style type="text/css">
.auto-style1 {
width: 130px;
}
.auto-style2 {
width: 130px;
height: 33px;
}
.auto-style3 {
height: 33px;
}
.auto-style4 {
width: 99px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table style="border-style: ridge; width: 100%; text-align: center; background-color: #FFFFFF;">
<tr>
<td align="center" class="unselected">
<a href="Default.aspx" style="text-decoration:none">新建</a>
</td>
<td align="center" class="unselected">
<a href="Input.aspx" style="text-decoration:none">匯入</a>
</td>
<td align="center" class="selected">
<a href="Output.aspx" style="text-decoration:none">匯出</a>
</td>
<td align="center" class="unselected">
<a href="Setting.aspx" style="text-decoration:none">設定</a>
</td>
<td align="center" style="background-color: green">澳門政府公共部門公文翻譯系統</td>
<td style="text-align:right" class="auto-style4" ><a href="Ouput_PT.aspx">Português</a></td>
</tr>
</table>
</div>
<div>
<asp:Button ID="Button1" runat="server" Text="輸出到Word" OnClick="Button1_Click" />
</div>
</form>
</body>
</html>