How MVC avoids the value that a controller method receives cannot be converted to a parameter type

Source: Internet
Author: User

Suppose the controller method parameter type is int:

 Public ActionResult getsth (int  ID)        {            return  Content (ID. ToString ());        }

And the view passes over the string:

@Html. ActionLink (" get ","getsth",new {ID ="hello"})

It will then report a mistake similar to the following:

For non-nullable types of method "System.Web.Mvc.ActionResult getsth (Int32)" in "MvcApplication3.Controllers.HomeController" System.Int32 "parameter" id ", the parameter dictionary contains a null item. An optional parameter must be a reference type, a nullable type, or a declaration as an optional parameter.
Parameter name: Parameters

Workaround one: Allow parameters to be null

 Public ActionResult getsth (int? ID)        {            return  Content (ID. ToString ());        }

Workaround Two: Assign default values to parameters

 public  actionresult getsth (int  id=< Span style= "COLOR: #800080" >1  ) { return   Content (ID.        ToString ()); }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.