by Yogesh | Jun 14, 2019 | ASP.NET Core 2 Tutorial
Routing in ASP.NET Core 2.2 ASP.NET Core routing is a way by which we can create named routes to call controllers and their respective actions. When a user writes any URL, the controller is called as per routes defined by the developer. In ASP.NET routing may...
by Yogesh | Jun 13, 2019 | ASP.NET Core 2 Tutorial
asp.net core 2.2 static files As per best programming practices, we should not use a folder other than wwwroot for static files like images, CSS, js, HTML pages, etc. The wwwroot is the standard static directory in ASP.NET Core, and other developers who dive into your...
by Yogesh | Jun 13, 2019 | ASP.NET Core 2 Tutorial
ASP.NET Core 2 application project structure After the creation of empty asp.net core project you have seen that empty project is not completely empty, and does, in fact, include a couple of files: Program.cs: This is the entry point of the application. It loads...
by Yogesh | Jun 6, 2019 | Node JS Tutorial
Create REST API using NodeJS, Express and MySQL Middleware Installation and Project Setup npm init npm install express --save npm install cors --save npm install nodemone --save npm install body-parser --save npm install mysql --save Mysql Database table structure...
by Yogesh | May 29, 2019 | Java Script Tutorial
Using POST method in XMLHTTPRequest – Ajax In this example, I am taking data from a form and posting on web API. Document name Father Name ...