34 lines
2.1 KiB
Plaintext
34 lines
2.1 KiB
Plaintext
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_singleFileUpload.ascx.cs" Inherits="ETS_WS.WebUserControls.mod_singleFileUpload" %>
|
|
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
|
|
<% if (false)
|
|
{ %>
|
|
<link href="../css/BuildBlocks.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/ETS.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/ExtraComp.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/MasterPage.css" rel="stylesheet" type="text/css" />
|
|
<link href="../css/Style.css" rel="stylesheet" type="text/css" />
|
|
<% } %>
|
|
<asp:Button runat="server" ID="btnShowSostFile" Text="Mostra Sostituisci File" />
|
|
<asp:Panel runat="server" ID="pnlSostFile" BackColor="#DDFFFF">
|
|
<div style="padding: 4px; width: 400px; height: 150px;">
|
|
<div id="pnlTitolo" class="divCenter" style="font-size: 20pt; font-weight: bold; height: 36px; background-color: #AACCCC">
|
|
<asp:Label runat="server" ID="lblTitolo" Text="Single File Uploader" />
|
|
</div>
|
|
<div class=" clearDiv divCenter" style="margin-top: 10px;">
|
|
<div class="clearDiv divCenter" style="height: 40px; vertical-align: middle; margin: auto;">
|
|
<div class="divSx">
|
|
<asp:AsyncFileUpload runat="server" ID="fileUplAsync" Width="350px" UploaderStyle="Traditional" UploadingBackColor="#CCFFFF" ThrobberID="myThrobber" />
|
|
</div>
|
|
<div class="divDx">
|
|
<asp:Image runat="server" ID="myThrobber" Style="display: none;" ImageUrl="~/images/ajax-loader.gif" />
|
|
</div>
|
|
</div>
|
|
<div class="clearDiv divCenter" style="padding-top: 20px;">
|
|
<asp:Button runat="server" ID="CancelButton" Text="Chiudi" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</asp:Panel>
|
|
<ajaxToolkit:ModalPopupExtender ID="MPE" runat="server" TargetControlID="btnShowSostFile" PopupControlID="pnlSostFile" BackgroundCssClass="modalBackground" DropShadow="true" CancelControlID="CancelButton" PopupDragHandleControlID="pnlTitolo">
|
|
</ajaxToolkit:ModalPopupExtender>
|