When developing ASP.NET applications the need of reducing code duplication increases along with their complexity. This is because testing and performing changes become very difficult tasks when having many different sources of code with the same functionality.
This tutorial explains Model View Controller (MVC) architecture, which allows us to separate different parts of our applications into t
The GridView is a powerful tool commonly used in web applications.
This tutorial explains how to improve GridView control by adding additional functionalities, like CheckBox or Image Button Columns.
This tutorial reviews new features in .Net Framework 2.0, 3.0 and 3.5.
Microsoft is always been stepping ahead of its competitors by bringing great new features and products in the market. The new development environment comes with tons of new features and design differences. .Net Framework 3.5 is ready to make futuristic websites with its extremely easy to use interface, rich accessibility fe
This tutorial explains how to use custom errors pages to provide better user experience when error occurs.
When error is occurred on ASP.NET web application, user will get default error page (which is not so nice looking, also known as "Yellow screen of death"). This error page confuses average visitor who don't know the meaning of "Runtime Error". Although developers like
This tutorial explains how to handle ASP.NET errors on application level with Global.asax or by using a custom http module.
Includes writing and reading errors to Windows EventLog, logging errors to text file or database and sending notification e-mails to administrator.
This tutorial explains how to handle errors with Try-Catch blocks or Page_Error procedure in ASP.NET web application.
Every developer will make errors whenever tries to create anything useful. Because of that, we need methods and tools for error handling.
Flash videos are very popular video format on Internet. To play flash video, you must have client side flash player. Using in ASP.NET web application can be automatized if you manipulate flash player with ASP.NET web custom control.
Tutorial includes control source code in both C# and VB.NET.
Explains how to simulate hidden column in GridView control. GridView is one of the new controls in ASP.Net 2.0 that replaced the DataGrid.
In earlier versions of .Net when you didn't want the data to be visible to the client, you simply set the Column visibility to False. But, if you try that with ASP.NET 2.0 GridView control, it will return only empty string.
Advanced use of Master Pages in ASP.NET 2.0 to achieve consistent look and feel of your web site. Master Pages enables us to apply the same page layout to multiple pages in a Web Application.