Web
Analytics
ASP.NET MVC Online Training | Angular | ASP.NET Tutorials

For Consultation : +91 9887575540

Stay Connected :

Dynamic Actions of Controllers

Dynamic Actions of Controllers

How to retrieve query string parameter in action.- By passing action argument as Query string parameter   public ActionResult Index(string urlparameter) { return Content("Your Url parameter is " + urlparameter); }   By ID Parameter:  ASP.NET MVC’s default routing...
Project.json in asp.net core 1.0

Project.json in asp.net core 1.0

Project.json Use of project.json is to store metadata ,compilation information and project dependencies.  It is replacement of ASP.NET 5 package.config  and we store all the package information whichwe want to use in our application .  we use JSON notation to feed all...