71 lines
2.8 KiB
Text
71 lines
2.8 KiB
Text
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="cuwMensajeAviso.ascx.cs" Inherits="_controlesusuario_cuwMensajeAviso" %>
|
|
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="act" %>
|
|
|
|
<style type="text/css">
|
|
.modalAvanzado
|
|
{
|
|
border-bottom: 0px dotted #000000; color: #000000; outline: none;
|
|
position: inherit;
|
|
text-decoration: none;
|
|
top:50%;
|
|
left: 50%;
|
|
margin-top: -100px;
|
|
margin-left: -100px;
|
|
}
|
|
|
|
.texto
|
|
{
|
|
line-height:18px;
|
|
text-align:left;
|
|
font-family:Verdana;
|
|
font-size:14px;
|
|
}
|
|
|
|
.modalAvanzado div {
|
|
position: absolute;width: 300px;
|
|
}
|
|
|
|
.modalAvanzado img {
|
|
border: 0; margin: -10px 0 0 -55px;
|
|
float: left; position: absolute;
|
|
}
|
|
|
|
.modalAvanzado em {
|
|
font-family: verdana; font-size: 16px; font-weight: bold;
|
|
display: block; padding: 0.2em 0 0.6em 0;
|
|
}
|
|
|
|
.custom { padding: 0.5em 0.8em 0.8em 2em; font-family: verdana; font-size: 16px; }
|
|
.classic { padding: 0.8em 1em; }
|
|
* html a:hover { background: transparent; }
|
|
.informacion { background: #7ecaf4; border: 1px solid #39aae1; }
|
|
.alerta { background: #66b9f4; border: 1px solid #39aae1; }
|
|
.error { background: #4898f4; border: 1px solid #39aae1; }
|
|
.botonCancel{ margin-left: 80px;}
|
|
.imagen
|
|
{
|
|
display:block;
|
|
}
|
|
</style>
|
|
|
|
<asp:UpdatePanel ID="UPMensajeAviso" UpdateMode="Conditional" runat="server">
|
|
<ContentTemplate>
|
|
<asp:ImageButton id="btnConfirmacion" runat="server" CausesValidation="false" ImageUrl="" Visible="false" />
|
|
<act:ConfirmButtonExtender id="cbeConfirmacion" runat="server" TargetControlID="btnConfirmacion" DisplayModalPopupID="mpeModalconfirmacion" />
|
|
<act:ModalPopupExtender id="mpeModalconfirmacion" runat="server" TargetControlID="btnConfirmacion" PopupControlID="pngModalConfirmacion" OkControlID="btnAceptar" BackgroundCssClass="modalBackground" />
|
|
<asp:Panel ID="pngModalConfirmacion" runat="server" >
|
|
<div class="modalAvanzado">
|
|
<div id="divMensaje" runat="server" >
|
|
<asp:Image ID="imgAviso" CssClass="imagen" height="48" width="48" runat="server" />
|
|
<em>
|
|
<asp:Label ID="lblTituloAviso" runat="server"/>
|
|
</em>
|
|
<asp:Label ID="lblMensajeAviso" CssClass="texto" runat="server"/>
|
|
<center>
|
|
<asp:ImageButton ID="btnAceptar" SkinId="skinAceptarAviso" OnClick="btnAceptar_Click" runat="server" CausesValidation="false" />
|
|
</center>
|
|
</div>
|
|
</div>
|
|
</asp:Panel>
|
|
</ContentTemplate>
|
|
</asp:UpdatePanel>
|