This repository has been archived on 2023-12-31. You can view files and clone it, but cannot push or open issues or pull requests.
EDA263/lab3/cs_lab3/myWebApplication/Uploadfile.ascx
2022-02-23 14:05:00 +01:00

15 lines
557 B
Plaintext

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="Uploadfile.ascx.cs" Inherits="myWebApplication.Uploadfile" %>
<asp:Label ID="lblStatus" Text="" runat="server" ForeColor="Red" ></asp:Label>
<br />
<asp:Label ID="lblUpload" runat="server" Text="Upload. File. Now!"></asp:Label>
<br />
<asp:FileUpload ID="FileUpload" runat="server" />
<br />
<asp:Button ID="btnUpload" runat="server" Text="Upload"
onclick="btnUpload_Click" />
<br />
<br />
<asp:Button ID="btnBack" runat="server" Text="Return" onclick="btnBack_Click" />