-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmMensajes.aspx
116 lines (79 loc) · 4.35 KB
/
frmMensajes.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
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
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="frmMensajes.aspx.vb" Inherits="frmMensajes" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="Server">
<script src="Scripts/bootstrap-datepicker.min.js"></script>
<link href="Content/bootstrap-datepicker.min.css" rel="stylesheet" />
<style runat="server" id="estilo"></style>
<div id="page-wrapper">
<div class="row">
<link href="Content/tablanocolor.css" rel="stylesheet" />
<div class="titulolink">
<br />
<a href="frmInicio.aspx"><i class="fa fa-home fa-fw"></i></a>>
<a href="#">Mensajes</a>
<br />
<br />
</div>
<script>
$('.input-group.date').datepicker({
autoclose: true, format: 'yyyy-mm-dd'
});
</script>
<div style="width: auto; overflow-x: auto;">
<div style="width: 236px; margin-left: auto; margin-right: auto;">
<div style="width: 170px; margin-left: auto;margin-right: auto;">
<button id="enviarpinshimensaje" onclick="lansa()" style="width: 170px; margin-left: auto" type="button" class="btn btn-default">
Nuevo mensaje <i class='fa fa-envelope-o '></i>
</button>
</div>
<br />
<div id="quedemonios" style="display: none ; text-align:center">
<div>
Asunto:</br><input type="text" style=" margin-left: auto; margin-right: auto;" runat="server" id="asuntini" clientidmode="Static" />
</div>
<div>Mensaje:
<textarea id="TextArea1" style=" margin-left: auto; margin-right: auto;" rows="3" runat="server" class="form-control"></textarea>
</div>
<br />
<div style="width: 170px; margin-left: auto;margin-right: auto;">
<button runat="server" id="enviarmensajillo" style="width: 170px; margin-left: auto" type="button" class="btn btn-default" aria-label="Right Align">
Eviar mensaje <i class='fa fa-envelope-o '></i>
</button>
</div>
</div>
<br />
</div>
</div>
<div style="width: auto; overflow-x: auto;">
<div style="min-width: 600px;">
<asp:Table ID="Table1" class="table abc" runat="server" Style="width: 100%; min-width: 600px">
<asp:TableHeaderRow>
<asp:TableHeaderCell>Fecha</asp:TableHeaderCell>
<asp:TableHeaderCell>Asunto</asp:TableHeaderCell>
<asp:TableHeaderCell>Estado</asp:TableHeaderCell>
<asp:TableHeaderCell>Leer</asp:TableHeaderCell>
</asp:TableHeaderRow>
</asp:Table>
</div>
</div>
<input type="text" runat="server" id="actuacan" clientidmode="Static" style="display: none" />
<input type="text" runat="server" id="actuaid" clientidmode="Static" style="display: none" />
<button id="secretbutton" runat="server" class="btn btn-default" type="button" style="display: none">dois</button>
<script>
function discre(id) {
document.getElementById("actuaid").value = id.substring(3, id.length);
document.getElementById('<%= secretbutton.ClientID%>').click();
//reload();
}
function lansa() {
//alert("aaa");
document.getElementById("enviarpinshimensaje").style.display = "none";
document.getElementById("quedemonios").style.display = "Block";
//document.getElementById('<%= secretbutton.ClientID%>').click();
//reload();
}
</script>
</div>
</div>
</asp:Content>