Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3974726
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T04:36:07+00:00 2026-05-20T04:36:07+00:00

FileUpload img = (FileUpload)UploadImg; Byte[] imgByte = null; if (img.HasFile && img.PostedFile!=null) { HttpPostedFile

  • 0
FileUpload img = (FileUpload)UploadImg;
        Byte[] imgByte = null;
        if (img.HasFile && img.PostedFile!=null)
        {
            HttpPostedFile File = UploadImg.PostedFile;
            imgByte = new Byte[File.ContentLength];
            File.InputStream.Read(imgByte, 0, File.ContentLength);
        }    **strong text**

here i want to save an image in database . so i want to convert an image to byte array. for that i wrote the above code. but here the if condition is not executed

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T04:36:08+00:00Added an answer on May 20, 2026 at 4:36 am

    Assuming you have a file upload control on your page:

    <asp:FileUpload id="UploadImg" runat="server" />
    <asp:Button id="UploadButton" runat="server" Text="Upload" OnClick="UploadButton_Click" />
    

    the following should work:

    protected void UploadButton_Click(object sender, EventArgs e)
    {
        if(UploadImg.HasFile)
        {
            byte[] imgByte = UploadImg.FileBytes;
            string filename = Path.GetFileName(UploadImg.FileName);
            // TODO: Save the image to the database
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

filename = Path.GetFileName(FileUpload.FileName); HttpPostedFile pf = FileUpload.PostedFile; System.Drawing.Image img2 = System.Drawing.Image.FromStream(pf.InputStream); System.Drawing.Image bmp2 =
code: <span>Upload Adobe Acrobat file<img src=../../Images/UI/pdf.jpg style=height: 25; width: 20 height=25 width=20 /></span> <asp:FileUpload
i want to add file(photo) to fileupload control in the c#(code behind) thanks
I am looking for a Java applet to read a file from client machine
I am using JAI and create a file with: PlanarImage img = JAI.create(fileload, myFilename);
I use blue-imp jquery.fileupload basic plug int to build my own multiple file upload
I am using rich:fileUpload to upload files. When i click the + button to
I'm creating a fileupload control on a linKbutton click event. First time it's creating
I have a FileUpload control in the Source page. On the Upload button handler,
I have a FileUpload Control and a image control on asp.net page as follows

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.