October 2019
Creating a High-Performance ASP.Net Core CRUD App with ADO.Net
.
In this blog, I am going to create a web application in ASP.Net Core to demonstrate CRUD operations using ADO.Net. Those people who already know about ASP.NET, they will understand this example very well.Those who are freshers, I would request…
Exception Handling in Python
.
In this blog, we will see how to handle exceptions in Python application. If you are new to Python, please read my previous blog – Introduction to Python Programming This blog will help you to understand try, except and finally…
How to access SQL Database Connection string in .Net Core?
.
A database connection string is a very basic task for a developer who is working on ASP.Net. But defining a database connection string in .Net Core and reading back into C# code is a little different than the traditional ASP.Net…
ASP.Net Core Razor Pages handler methods
.
In this blog, we will see ASP.Net Core Razor Pages handler methods in detail. Also, we will explore how handler methods are invoked in Razor pages based on user action. What are handler methods in .Net Core Razor pages? Handler…
Razor Pages vs MVC – Which one is better for your project ?
.
Before ASP.Net Core 2.0 we had an MVC option to develop a web application. After the release of .Net Core 2.0, a developer has one more option to create a Web Application in .Net Core i.e. .Net Core Razor pages.In…
Configure and Host ASP.Net Core Application on IIS
.
In this blog, we will see how to host an ASP.Net Core application on IIS server. Hosting ASP.Net Core app on IIS is not so different than hosting a traditional ASP.Net web application. If you are new to ASP.Net core,…
