locked
ASP.NET Web Forms FAQ: Bagaimana cara meng-upload file gambar? RRS feed

  • Diskusi Umum

  • Lihat kode pada Fileupload.aspx:

    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Fileupload.aspx.cs" Inherits="FileuploadDemo" %> 

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

    <html xmlns="http://www.w3.org/1999/xhtml"> 

    <head runat="server"> 

        <title>Upload Image Demo</title> 

    </head> 

    <body> 

        <form id="form1" runat="server"> 

        <div> 

            <asp:Image ID="Image1" runat="server" /> 

            <asp:FileUpload ID="FileUpload1" runat="server" /> 

            <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" /> 

        </div> 

        </form> 

    </body> 

    </html>

     

    Berlanjut ke ASP.NET Web Forms FAQ: Bagaimana cara meng-upload file gambar? (Part 2)


    Agnes Sannie [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.
    Jumat, 26 Agustus 2011 05.37
    Moderator