GridView

Posts filed under GridView

Export GridvView to PDF File in C#.NET

Filed in ASP.NET, Web AppTags: , , , ,

Previously We have exported the GridView control to Excel/CSV files. Today we are going to export the GridView to PDF File. Exporting the GridView to PDF is a different thing. Because we need some other references to perform this. I have add a reference ‘iTextSharp.dll’ to export into PDF. Also in this article the process [...]

Deleting Multiple Rows from GridView in ASP.NET

Filed in ASP.NET, Web AppTags: , , , , , , , ,

Gridview control of ASP.NET is used to represent the  information of database in a tabular format. This table format of information is used by the developer so they can access the large amount of  information in minimum time. The operation that can be performed with GridView information is inserting a new information, updating, deleting and [...]

Import Excel File to GridView Control in ASP.NET

Filed in ASP.NET, Web AppTags: , , , , , , , ,

Hello Guys, This article will tell you to Upload an Excel Sheet into your ASP.NET Web Application and Import this Excel Sheet in GridView Control of ASP.NET. To do this task you must need the Microsoft Data Access Component(MDAC) to be installed on your computer system. Using this project you can import both the .xls [...]

Binding to GridView in C#.NET: Item Template, Row_Command Event to Fetch Row of GridView

Filed in ASP.NET, Web AppTags: , , , , , , , , , , ,

In this project I am going to share the demo project about Binding GridView in .Net. GridView DataSource and DataBind() method to bind GridView in .Net. Also I will tell you how yo use Item Template to design your custom GridView. To use the custome GridView you must set the GridView Property AutoGenerateColumns=”false”. To Fetch [...]