-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmMsj.aspx
111 lines (60 loc) · 3.13 KB
/
frmMsj.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
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="frmMsj.aspx.vb" Inherits="frmMsj" %>
<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/chat.css" rel="stylesheet" />
<div class="titulolink">
<br />
<a href="frmInicio.aspx"><i class="fa fa-home fa-fw"></i></a>>
<a href="#">Mensajes</a>>
<a href="#">Leer Mensaje</a>
<br />
<br />
</div>
<script>
$('.input-group.date').datepicker({
autoclose: true, format: 'yyyy-mm-dd'
});
</script>
<div class="container">
<div style="padding-bottom: 10px" >
<button runat="server" id="btnregresar" type="button" class="btn btn-default" aria-label="Left Align">
<i class='fa fa-arrow-left '></i>Regresar
</button>
</div>
<div runat="server" id="mensajesapliados"></div>
<div>
<textarea id="TextArea1" style="max-width: 600px;" rows="3" runat="server" class="form-control"></textarea>
</div>
<div style="width: 170px; margin-left: auto">
<button runat="server" id="enviarpinshimensaje" 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>
<!-- @end .container -->
<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 confirpedido(id) {
document.getElementById("actuacan").value = 'confir';
document.getElementById("actuaid").value = id.substring(3, id.length);
document.getElementById('<%= secretbutton.ClientID%>').click();
//reload();
}
function discre(id) {
document.getElementById("actuacan").value = 'dis';
document.getElementById("actuaid").value = id.substring(3, id.length);
document.getElementById('<%= secretbutton.ClientID%>').click();
//reload();
}
</script>
</div>
</div>
</asp:Content>