Found 35 Articles for ASP.Net

Characteristics of .NET Framework

Siva Sai
Updated on 24-Jul-2023 10:27:47

1K+ Views

In the realm of software development, Microsoft's .NET Framework has revolutionized the industry with its comprehensive and consistent programming model for creating applications that have visually stunning user experiences, seamless and secure communication, and the ability to model a range of business processes. This article seeks to highlight the key characteristics of the .NET Framework that make it a vital tool for developers worldwide. What is .NET Framework? The .NET Framework, a software framework developed by Microsoft, is a platform for building various types of applications. From Windows-based applications to web-based applications and services, the .NET Framework provides a large ... Read More

How do you configure ASP.NET Core applications?

Akshay Khot
Updated on 22-Jun-2021 15:04:21

273 Views

During the development of an application, and even after it’s built, you often need to change various settings that control how the application behaves. Configuration refers to the external values that control an application's behavior, consisting of settings and parameters that the application uses at runtime.The best practice regarding storing configuration values is outside the application, instead of hard-coding them in the source code. You don’t want to recompile and restart the application every time you make a change to the configuration. There are also security implications. You don’t want to store the database connection strings or passwords in the ... Read More

Explain the ASP.NET Core support for multiple environments for development and production

Akshay Khot
Updated on 22-Jun-2021 15:10:35

854 Views

Running an application in production for live customers is very different from running it when you are developing it on your local machine. In production, your application is hosted on a server which has very different configurations and specifications than your computer. Various services that your application talks to, such as databases or external APIs change for production.By letting the application know which environment it’s running, you can vary the application’s behavior. ASP.NET Core makes it easy to manage various environments effortlessly. You can configure different configuration settings for different environments, and tweak them without having to recompile the application. ... Read More

How to schedule background tasks (jobs) in ASP.NET Core?

Akshay Khot
Updated on 22-Jun-2021 14:58:24

2K+ Views

Background tasks, also called as jobs, are essentially services that aren’t meant to execute during a normal flow of the application, such as sending email confirmations or periodically cleaning up the database to purge the inactive accounts. These jobs are not meant to interact with the customers or process user input. Rather, they run in the background, handling items from a queue or executing a long-running process.A primary advantage of performing these tasks in a background job or service, you can keep the application responsive. For example, when a user signs up, instead of sending them an email in the ... Read More

What is SignalR and how to use it?

Akshay Khot
Updated on 22-Jun-2021 14:57:48

3K+ Views

In typical web applications, the communication flow is one-way, i.e. from client to the server. The client initiates a request to the server, the server performs some task, and sends the response to the client.SignalR is an open-source project that enables real-time, bi-directional web communication from server to clients. Using SignalR, you can write server-side code that can communicate with the clients instantly.SignalR simplifies the process of adding real-time web functionality to web applications, where the server code pushes content to connected clients as soon as it becomes available. This frees the clients from repeatedly polling the server, and having ... Read More

Explain how error handling works in ASP.NET Core

Akshay Khot
Updated on 22-Jun-2021 14:57:12

554 Views

When building or using web applications, it’s very common to run into errors. Hence it’s important to configure error handling for your web application and handle the errors gracefully to provide a suitable response to the user. This improves the usability of your application as well as makes it robust.There are many different errors that can happen in a normal application flow. However, the two important types of errors are exceptions and error status codes, e.g. 404, 502. Exceptions occur when the app runs into an unexpected circumstance. A very common example of an exception is the notorious NullReferenceException,  which ... Read More

Explain how static files are served in ASP.NET Core

Akshay Khot
Updated on 22-Jun-2021 14:56:23

569 Views

Static files refer to content such as HTML, CSS, JavaScript, and images that are served directly to the users without any dynamic computation.In ASP.NET Core, the web root directory holds the static files. By default, it is the {content root}/wwwroot directory, but you can change it using the UseWebRoot() method.In the Program class, the CreateDefaultBuilder() method initializes the content root.public class Program{    public static void Main(string[] args){       CreateHostBuilder(args).Build().Run();    }    public static IHostBuilder CreateHostBuilder(string[] args) =>       Host.CreateDefaultBuilder(args)          .ConfigureWebHostDefaults(webBuilder =>{             webBuilder.UseStartup();   ... Read More

What is routing? Explain how it works in ASP.NET Core

Akshay Khot
Updated on 22-Jun-2021 14:55:46

855 Views

In the context of web application frameworks, routing matches an incoming HTTP request to executable code. The executable code works as an endpoint that handles the request and returns a response.ASP.NET Core defines and configures the endpoints when the application starts. Routing also handles extracting the values from the request, building appropriate objects, and passing them to the methods that handle the request.Routing has been an important part of ASP.NET Core from the beginning. However, ASP.NET Core 3.0 introduced a new routing system called endpoint routing. It decouples routing from the MVC framework and makes it a more fundamental feature ... Read More

Explain how Razor Pages work in ASP.NET Core

Akshay Khot
Updated on 22-Jun-2021 14:55:10

2K+ Views

Razor Pages simplify the traditional MVC-based programming model by adopting a file-based routing. Razor Pages focus on page-based scenarios for building web applications rather than using controllers and views like a traditional ASP.NET MVC application.Once the application receives an HTTP request, it moves through the middleware pipeline until it reaches a middleware component that can handle and process it. Typically, it's a routing middleware that matches a URL path to a configured route. This route defines which Razor page to invoke for this particular request.Once the router has selected the Razor Page, the framework executes that Razor Page to generate ... Read More

What is Kestrel and how does it differ from IIS? (ASP.NET)

Akshay Khot
Updated on 22-Jun-2021 14:54:37

8K+ Views

Kestrel is a lightweight, cross-platform, and open-source web server for ASP.NET Core. It is included and enabled by default in ASP.NET Core. Kestrel is supported on all platforms and versions supported by .NET Core.In the Program class, the ConfigureWebHostDefaults() method configures Kestrel as the web server for the ASP.NET Core application.public class Program{    public static void Main(string[] args){       CreateHostBuilder(args).Build().Run();    }    public static IHostBuilder CreateHostBuilder(string[] args) =>       Host.CreateDefaultBuilder(args)          .ConfigureWebHostDefaults(webBuilder =>{             webBuilder.UseStartup();          }); }Though Kestrel can serve an ... Read More

Advertisements