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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:06:29+00:00 2026-05-16T10:06:29+00:00

I have problem with uploading image to SQL database. i have Methods Upload in

  • 0

I have problem with uploading image to SQL database.
i have Methods Upload in controller Upload

dbData userDb = new dbData();

public ActionResult Upload()
{
    return View();
}

[HttpPost]
public ActionResult Upload(HttpPostedFileWrapper file)
{
    if (file.ContentLength > 0)
    {
        Stream fileStream = file.InputStream;
        string fileName = Path.GetFileName(file.FileName);
        int fileLength = file.ContentLength;
        byte[] fileData = new byte[fileLength];
        fileStream.Read(fileData, 0, fileLength);

        var image = new ImageTable();
        image.Image = fileData;
        image.Description = "Default profile picture";

        try
        {
            userDb.ImageTables.InsertOnSubmit(image);
            userDb.SubmitChanges();
            return RedirectToAction("Success");
        }
        catch (Exception ex)
        {
            throw;
        }

    }
    return View();
}

If i use this view page

<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>

<!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</title>
</head>
<body>
    <div>

     <% using (Html.BeginForm("Upload", "Upload", FormMethod.Post, new { enctype = "multipart/form-data" }))
        {%>
        <input name="file" type="file" runat="server" id="file"/><br />
        <input type="submit" value="Upload File" />
<%} %>
    </div>
</body>
</html>

everithing works great but if i want to use view runned on masterpage i wil get this error after i click upload submit button:

No parameterless constructor defined for this object.

Know someone where is problem and how can i fix it ?
Thanks

  • 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-16T10:06:30+00:00Added an answer on May 16, 2026 at 10:06 am

    This error occurs because default model binder can’t create instances of classes that don’t contain parameterless constructor (such as HttpPostedFileWrapper).

    Simplest way around this is to just pull files from Request.Files (e.g. Request.Files["file"]).

    Alternatively, you could create custom model binder for that.

    UPDATE:

    This is action method I used:

    [HttpPost]
    public ActionResult Index(FormCollection form)
    {
        var file = Request.Files["file"];
        if(file != null && file.ContentLength > 0)
        {
            // ...
        }
    
        return View();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Here I have the problem with uploading image in PHP. The problem is that
i have a problem with uploading. if ((($_FILES[file][type] == image/gif) || ($_FILES[file][type] == image/jpeg)
I have a problem conserning uploading multiple files to my ftp server and I
I have problem with UIWebView delay when the load image from url. In my
I have a requirement to upload image on server in 2 size, normal and
I have an user registration form and uploading image with other form elements is
I have developed an image uploading application that uses Flash to load an image,
i have a problem while uploading and resizing images in a loop. can anyone
I have an Image uploading application running on carrierwave which restrict user from uploading
i have same problem. other files doc, xls uploads fine. but pdf uploading gives

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.