Web
Analytics
| Angular | ASP.NET Tutorials

For Consultation : +91 9887575540

Stay Connected :

non action attribute in mvc

non action attribute in mvc

It's a attribute that which is used on the methods who are defined by  public access modifier.Actually MVC Framework treats all public methods as URL but in case if you don't want this then you have to make a method buy decorated it by non action attribute.Same may be...

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...

startup.cs class in asp.net core

startup.cs class in asp.net core

Startup.cs Startup.cs file is called by the main program which is existed into the program.cs.startup.cs which is the mandatory file in asp.net core application without that file asp.net application cannot be executed and first asp.net framework see the configuration...