Click here to Skip to main content
15,883,705 members
Articles / Web Development / ASP.NET
Tip/Trick

Validate Input in ASP.NET MVC

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
2 Apr 2014CPOL1 min read 38.2K   5   3
This tip explains how to submit your form with HTML content in MVC.

Introduction

When you develop an app, sometimes your requirements could be that you want to send HTML values from view to the controller. Sometimes, we use HTML Editors to save some information into the database. By default, ASP.NET MVC doesn't allow a user to submit the HTML content. So let's see how to submit your form with HTML content.

Using the Code

  1. Open Visual Studio, then select "New Project", then select ASP.NET MVC 4 Application.

    Image 1

  2. Provide a project name, then click OK.
  3. Select Internet Application, then click OK.

    Image 2

  4. Create a New Model.

    ValidateModel.cs

    C#
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Mvc;
    namespace ValidateInputDemo.Models
    {
        public class ValidateModel
        {
            public string description { get; set; }
        }
    }
  5. Add a new method to your Controller.

    HomeController.cs

    C#
    public ActionResult ValidateInput()
    {
        return View();
    }
    [HttpPost]
    public ActionResult  ValidateInput(string description)
    {
        ValidateModel validateInputModel = new ValidateModel();
        validateInputModel.description = description;
        return View(validateInputModel);
    }

    ValidateInput.cshtml

    C#
    @model ValidateInputDemo.Models.ValidateModel
    @{
           ViewBag.Title = "ValidateInput";
    }
    @using (@Html.BeginForm("ValidateInput","Home", 
    FormMethod.Post, new { @id = "form1", @enctype = "multipart/form-data" }))
    {
        <label id="lblDescription">Description
    
         @Html.TextAreaFor(m=>m.description, new {@id="txtDescription",@name="description" })
    
        <input type="submit" id="bttn_Submit" />
    }

    You can see in the code above, there is a text area and a submit button, have a look in the browser. Press F5.

    Image 3

    You can see in the preceding screen, if you type something into the description and press Submit then nothing happens.

    Now check the following example. Add HTML content into text area.

    Image 4

    You will get the error above. This error comes because this is the security from ASP.NET MVC. For applications, a user cannot send HTML values to the controller, but sometimes we want to send values to the controller.

    For resolving this issue, we have the ValidateInput(false) attribute. Just put this into your controller and have a look.

    C#
    [HttpPost]
    [ValidateInput(false)]
    public ActionResult  ValidateInput(string description)
    {
       ValidateModel validateInputModel = new ValidateModel();
       validateInputModel.description = description;
       return View(validateInputModel);
    }

    Now press F5. After filling in the HTML attribute press the submit button, you will never get an error. So when you want to work with HTML attributes in your app text area or textboxes, don't forget to use validateinpute(false) in your ActionMethod.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
Questionhi Pin
mihir549018-Aug-15 20:01
mihir549018-Aug-15 20:01 
Questionhi Pin
mihir549018-Aug-15 19:45
mihir549018-Aug-15 19:45 
Questionalidate Input in ASP.NET MVC Pin
Bijeshpb843-Aug-14 20:42
Bijeshpb843-Aug-14 20:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.