Configuring SQL Server session mode in ASP .NET
The SQL Server session mode stores session data to the database. Like State Server mode, SQL Server mode also stores data separate from the application domain.
The SQL Server session mode stores session data to the database. Like State Server mode, SQL Server mode also stores data separate from the application domain.
Session is a way to store information so that user data can be retrieved on multiple pages of the application. Session data is stored on user basis so that the data is available for the same user.
In .NET 4.5, some new classes were added to System.Compression namespace which allows you to create and extract zip files. This article explains how to create and Extract a zip file programmatically using C#.
With the help of file upload control ( introduced in .NET v2.0 ), accepting files from users is no longer a difficult task.
If you have accidentally changed the WordPress URL and site address in the General Settings and located out, don’t panic. We can solve it in a minute.
The aim of this article is to provide an overview of using Grid View with some basic functionalities like edit, update and delete and pagination.
The HTML 5 Geolocation API allows you to access the location of the user. For privacy, user agents asks the permission of user before accessing the location details.
A theme is simply a collection of files that defines the look and feel of a website. It may contain some CSS, JavaScript, Image or video files.
The HTML data global attribute, introduced in HTML 5, is used to embed custom data to the HTML elements.
In C# 2.0, a special datatype known as nullable was introduced. This allows you to assign null to value type variables.