Categories
Sql Server

Row Compression in SQL Server

Row Compression in SQL Server In this post we will learn about Row Compression in SQL Server. How to implement Row Compression in SQL Server and benefits of it. Row Compression: Row compression, is not a complicated process. Basically, it identifies the data type of each columns, converts it to variable length, and finally reduces the amount […]

Categories
Asp, Asp.net

How to Store and Retrieve Images from SQL Server Database using Asp.Net

How to Store and Retrieve Images from SQL Server Database using Asp.Net In this tutorial we will discuss How to Store and Retrieve Images from SQL Server Database using Asp.Net. In this approach first of all we will upload file through FileUpload Control and save the image name in SQL Server Database. Then we will display […]

Categories
Asp, Asp.net

How to Create a directory using ASP.NET and C#

How to Create a directory using ASP.NET and C# In this tutorial we will learn How to Create a directory using ASP.NET and C#. To create a directory on the disk, first we will need to import the System.IO namespace. The System.IO namespace contains the CreateDirectory() method that we will use to create our directory. In previous […]

Categories
Asp, Asp.net

How To Print GridView in Asp.Net

How To Print GridView in Asp.Net In this post we will learn How To Print GridView in Asp.Net. This feature come to handy for reporting purpose. Earlier we had discussed CRUD Operations Using Entity Framework in ASP.NET MVC. Here we are using JavaScript to accomplish this. We have used AdvetureWorks Database to fill GridView. Design:  <%@ Page […]