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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T19:54:41+00:00 2026-06-01T19:54:41+00:00

I have a form that I upload two images. I want to do validation

  • 0

I have a form that I upload two images. I want to do validation on these images, such as image size and I want to be able to check if the image field are not left blank.

public ActionResult Create(NewsViewModel newsViewModel, IEnumerable<HttpPostedFileBase> files)
    {
        try
        { 
            //more code here

            var originalFile = string.Empty;

            IList<string> images = new List<string>(2);

            foreach (var file in files)
            {
                if (file != null && file.ContentLength > 0)
                {
                    var fileName = Path.GetFileName(file.FileName);
                    if (fileName != null) originalFile = Path.Combine(Server.MapPath(upload_path), DateTime.Now.Ticks+"_ "+ fileName);
                    file.SaveAs(originalFile); 

                    images.Add(originalFile);
                }
            } 

            if (images.Count == 2)
            {
                newsViewModel.News.Thumbnail = images[0] ?? "";
                newsViewModel.News.Image = images[1] ?? "";
            }
            //more code here

            return RedirectToAction("Index");
        }
        catch
        {
            return View();
        }
    }

How can i send response back to the form after checking the image sizes and find out that they are not valid?

or if images.count is not 2, how do i validate that?

any ideas ?

  • 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-06-01T19:54:42+00:00Added an answer on June 1, 2026 at 7:54 pm

    You could add an error to the ModelState and then re-show the same view, something like this:

    ModelState.AddModelError(string.Empty, "The image is not valid becuase...");
    return View(newsViewModel)
    

    Then in the view if you have a ValidationSummary your validation error message would be shown on it (the first argument is the “key” which matches to the control ID to show the message next to usually, which is why it is String.empty here but maybe you have a control you want it to be associated with).

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

Sidebar

Related Questions

I currently have an asp form that uses jquery for two elements: an image
I have an image upload form that takes a title and a file for
I have an upload form that takes a user about 30 min. to complete.
I am new to Jquery. I have an upload form that when something is
I have a method set up that uses jquery form for a file upload
I have a form where the user uploads two images, and based on them
I have a form that allows the user to either upload a text file
I have two models, Room and Image . Image is a generic model that
I am trying to upload two images, re-size them, and then save them in
I have a form with a file upload field in it and I have

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.