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

  • Home
  • SEARCH
  • 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 297647
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T06:39:32+00:00 2026-05-12T06:39:32+00:00

i am using the sample asp.net mvc app and i want to add specific

  • 0

i am using the sample asp.net mvc app and i want to add specific validation on certain textboxes

such as:

  • No spaces
  • Min / Max size

how would i go about doing this?

  • 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-12T06:39:32+00:00Added an answer on May 12, 2026 at 6:39 am

    An example:

    Controller:

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Index(Company company)
    {
        //validate and save data
        if (ValidateCompanyData(company))
        {
            _service.SaveCompanyData(CustomerId, company);
            ViewData["info"] = "Your changes have been saved.";
        }
    
        var companyViewData = GenerateCompanyViewData(company);
    
        return View("Index", companyViewData);
    }
    
    
    [NonAction]
    public bool ValidateCompanyData(Company company)
    {
        if (!company.VAT.HasValue())
        {
            ModelState.AddModelError("VAT", "'Vat' is a required field.");
        }
        if (!company.CompanyName.HasValue())
        {
            ModelState.AddModelError("CompanyName", "'Name' is a required field.");
        }
    
        return ModelState.IsValid;
    }
    

    View:

    Html.ValidationMessage("VAT")
    

    To access the errormessage.

    In case you’re wondering:
    .HasValue() is an extension method that is the same as !string.IsNullorEmpty()

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

Sidebar

Related Questions

I am using the asp.net mvc sample app and have expanded it a bit.
I've been developing a simple website using asp.net MVC and I'm starting to add
I'm using Ninject 2 with an ASP.NET MVC web app. All the dependencies are
I have created a sample project using ASP.NET MVC 3 Web Application (Razor) template.
I'm using the MVC beta to write a simple application to understand ASP.Net MVC.
I've recently started playing around with the ASP.NET MVC NerdDinner sample, and as part
Using asp.net MVC in c#, I am making a call to a stored procedure
While reading an Asp.Net MVC code sample that used MbUnit as it's testing framework,
I've developed a simple system using ASP.NET MVC and WCF for customers to register
I am using ASP.NET MVC 2. I have played around you the YUI samples

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.