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
|
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:Button Style="display: none" ID="ModalButtonPopUpTraitement" runat="server" CausesValidation="False"/>
<ajaxtoolkit:modalpopupextender ID="ModalPopupExtenderTraitement" runat="server" BackgroundCssClass="modalBackground"
PopupControlID="PanelTraitement" TargetControlID="ModalButtonPopUpTraitement" />
<asp:Panel ID="PanelTraitement" runat="server" BackgroundCssClass="modalPopup"
BackColor="#E0E3E7" BorderColor="GhostWhite" BorderWidth="3"
Height="81px" Width="359px" CssClass="modalPopup">
<table width="100%">
<tr>
<td>
</td>
<td align="center">
<table style="width: 320px">
<tr>
<td align="right">
<asp:Image ID="ImageProcess" runat="server" alt="Traitement en cours..."
ImageUrl="~/Images/process_running.gif" Width="70px" />
</td>
<td>
</td>
<td align="left">
<asp:Label ID="LabelTraitementEnCours" runat="server"
Text="Le traitement peut prendre plusieurs minutes, merci de patienter."></asp:Label>
</td>
</tr>
</table>
</td>
<td>
</td>
</tr>
</table>
</asp:Panel> |