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 7025703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:00:42+00:00 2026-05-28T00:00:42+00:00

I created an application in ASP.NET C# and I want to upload an image

  • 0

I created an application in ASP.NET C# and I want to upload an image into MySQL (Binary field) using ASP:FileUpload tool. I could code only the following and couldn’t understand the rest. I Googled all the day and couldn’t find any relevant. Any help!

ASPX file

<asp:FileUpload ID="FileUpload1" runat="server" />
br />
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" />

C# file

protected void Button1_Click(object sender, EventArgs e)
    {
        HttpPostedFile fup = FileUpload1.PostedFile;
        cmd = new OdbcCommand("INSERT into profile(picture) VALUES(?)", MyConnection);
        cmd.Parameters.Add("@picture", OdbcType.Binary) = fup;
        MyConnection.Open();
        cmd.ExecuteNonQuery();
        MyConnection.Close();
    }
  • 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-28T00:00:43+00:00Added an answer on May 28, 2026 at 12:00 am

    It seems that these lines are wrong:

    cmd = new OdbcCommand("INSERT into profile(picture) VALUES(?)", MyConnection);
    cmd.Parameters.Add("@picture", OdbcType.Binary) = fup;
    

    I guess this should be like this (or similar – can’t test it right now):

    cmd = new OdbcCommand("INSERT into profile(picture) VALUES(@picture)", MyConnection);
    cmd.Parameters.Add("@picture", OdbcType.Binary).Value = FileUpload1.FileBytes;
    

    Also, see this similar question.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i have created a MVC application , without using asp.net membership provider, i want
I have created a web application using ASP.NET MVC3, and want to display a
I'm trying to create a upload center application using Asp.Net MVC 4. I want
I have created an asp.net application using Entity Framework. In this I want to
I have created blank Asp.Net-MVC 3 web application and want to write my own
I am using asp.net .. i have created one small application.. I have Configure
I have created a mobile application using kendo Mobile UI's trial version in asp.net
I'm using Quartz.NET for job scheduling in my ASP.NET application, and I have created
I am new in Asp.net MVC.i have created mvc application using datasource but i
I've developed a chat application using WCF/ASp.net. I want to asynchronously transfer a file

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.