-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMasterPage_1.Master
More file actions
263 lines (233 loc) · 8.94 KB
/
MasterPage_1.Master
File metadata and controls
263 lines (233 loc) · 8.94 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage_1.master.cs" Inherits="ContabSysNetWeb.MasterPage_1" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<!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">
<link href="general.css" rel="stylesheet" type="text/css" />
<link href="fontawesome.css" rel="stylesheet" type="text/css" />
<link href="radcalendar.css" rel="stylesheet" type="text/css" />
<link href="Styles/GridViewStyles/styles2.css" rel="stylesheet" />
<link href="~/Scripts/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="myBootstrap.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="Scripts/jquery/jquery-ui-1.10.4.min.css" />
<%--<link href="Content/font-awesome-4.2.0/css/font-awesome.min.css" rel="stylesheet" />--%>
<link href="Content/fontawesome-free-5.8.2-web/css/all.min.css" rel="stylesheet" />
<style type="text/css">
#dialog-link
{
padding: .4em 1em .4em 20px;
text-decoration: none;
position: relative;
}
#dialog-link span.ui-icon
{
margin: 0 5px 0 0;
position: absolute;
left: .2em;
top: 50%;
margin-top: -8px;
}
#icons
{
margin: 0;
padding: 0;
}
#icons li
{
margin: 2px;
position: relative;
padding: 4px 0;
cursor: pointer;
float: left;
list-style: none;
}
#icons span.ui-icon
{
float: left;
margin: 0 4px;
}
.fakewindowcontain .ui-widget-overlay
{
position: absolute;
}
</style>
<title id="Title1" runat="server">Untitled Page</title>
<style type="text/css">
.FontMediumBoldNavy
{
font-size: 12px;
font-weight: bold;
color: #000080;
}
.minheight
{
min-height: 400px;
_height: auto !important;
height: 400px;
}
.miniminheight
{
min-height: 5px;
_height: auto !important;
height: 5px;
}
Table.ListView
{
font-family: tahoma;
font-size: small;
padding: 10px;
}
th.center
{
text-align: center;
}
th.right
{
text-align: right;
}
th.left td.left
{
text-align: left;
}
td.center
{
text-align: center;
}
td.right
{
text-align: right;
}
th.padded, td.padded
{
padding-left: 10px;
padding-right: 10px;
}
.padded
{
padding-left: 10px;
padding-right: 10px;
}
.errmessage
{
padding-left: 10px;
padding-right: 10px;
color: #FF0000;
}
.modalBackground
{
background-color: #EFEFEF;
filter: alpha(opacity=70);
opacity: 0.7;
}
.errmessage_background
{
background-color: #FFFF9D;
border: thin solid #E6E600;
}
</style>
<script type="text/javascript">
// recibe el id de un elemento html y lo esconde/muestra
function showhide(id) {
if (document.getElementById) {
obj = document.getElementById(id);
if (obj.style.display == "none") {
obj.style.display = "";
} else {
obj.style.display = "none";
}
}
}
// recibe el id de un elemento html y lo muestra
function show(id) {
if (document.getElementById) {
obj = document.getElementById(id);
obj.style.display = "";
}
}
// recibe el id de un elemento html y lo esconde
function hide(id) {
if (document.getElementById) {
obj = document.getElementById(id);
obj.style.display = "none";
}
}
var clientid;
function fnSetFocus(txtClientId)
{
clientid=txtClientId;
setTimeout("fnFocus()",800);
}
function fnFocus()
{
eval("document.getElementById('"+clientid+"').focus()");
}
function fnClickOK(sender, e)
{
__doPostBack(sender,e);
}
</script>
</head>
<body>
<form id="form1" runat="server" enctype="multipart/form-data">
<%--<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>--%>
<asp:ScriptManager ID="ToolkitScriptManager1" runat="server">
<Scripts>
<%-- <asp:ScriptReference Name="jquery" Path="~/Scripts/jquery/jquery-1.10.2.js"/>
<asp:ScriptReference Path="~/Scripts/jquery/jquery-ui-1.10.4.min.js"/>
<asp:ScriptReference Path="~/Scripts/json2.js"/>--%>
</Scripts>
<Services>
<asp:ServiceReference Path="~/MostrarProgreso_1.asmx" />
</Services>
</asp:ScriptManager>
<div id="header" style="border-bottom-style: solid; border-bottom: 1px #36c; background-color: #d5ddf3; padding-left: 10px; padding-right: 10px; ">
<table style="width: 100%;">
<tr>
<td style="padding: 5px; vertical-align: top; width:15%; ">
<span class="FontMediumBoldNavy" style="font-style: italic; ">ContabSysNet</span><br />
<span id="AppName_Span" runat="server" class="FontMediumBoldNavy">App name</span>
</td>
<td style="width:70%; vertical-align: central; padding-top:5px; text-align:center; ">
<h3 id="PageTitle_TableCell" runat="server" style="margin: 0">Page Title</h3>
<span id="PageSubTitle_Span" runat="server" class="FontMediumBoldNavy"></span>
</td>
<td style="width:5%; text-align:right; ">
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="0" DynamicLayout="True">
<ProgressTemplate>
<span style="margin-right: 15px;">
<img runat="server" alt="...loading" src="Pictures/img/circle-ball-dark-antialiased.gif" /></span>
</ProgressTemplate>
</asp:UpdateProgress>
</td>
<td style="text-align: right; padding-top: 5px; width: 10%;">
<a id="A1" href="~/Main/Home" runat="server">
<img id="Img2" alt="home" runat="server" src="Pictures/house_20x20.png" style="margin-right: 10px;
border: none;" />
</a>
<a href="javascript:javascript:history.go(-1)">
<img id="Img3" alt="back" runat="server" src="Pictures/arrow_left_20x20.png" style="margin-right: 10px;
border: none;" />
</a>
<a id="Help_HyperLink" href="#" runat="server">
<img id="Img1" alt="home" runat="server" src="Pictures/help_20x20.png" style="border: none;" />
</a>
</td>
</tr>
</table>
</div>
<br />
<div style="min-height: 30%;">
<asp:ContentPlaceHolder ID="PanelCentral_ContentPlaceHolder" runat="server">
</asp:ContentPlaceHolder>
</div>
<div style="margin: 0px; background-color: #d5ddf3; border-bottom-style: solid; border-bottom-width: 1px; border-bottom-color: #36c">
<asp:ContentPlaceHolder ID="Footer_ContentPlaceHolder" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/jquery/jquery-1.10.2.js") %>"></script>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/jquery/jquery-ui-1.10.4.min.js") %>"></script>
<script type="text/javascript" src="<%= this.Page.ResolveUrl("~/Scripts/bootstrap/js/bootstrap.min.js") %>"></script>
</body>
</html>