Manoj Karkera's Blog
I live in Bangalore,India. Work for Sapient
-
Save and Display Images
-
User desire page after login
-
Bulk Insert using GridView and Sql Server XML
-
Bulk Update using Gridview and Sql Server XML
As we are know importance of opening and closing connection while using Database. Generally when we have some many records into database and have to update all record at same time, opening and closing connection for each transaction will give performance issue.
-
Display Ascending and Descending Image in Header for Sorting
-
Text and Value Pairs with AutoCompleteExtender and Display record in Gridview
-
Effective Paging and Sorting using GridView – Part II
In my previous article, I have shown how to use effective paging and sorting using gridview and ObjectDataSource, where you have millions of records and display records in grid which will affect performance problem. Here, I am doing same but without using ObjectDataSource. Here, I will be binding grid manually using dataset.
-
Display Image From Database
In my previous article, I had mention how to insert image into Database. Here I will show how to display image from database.This article is regarding how to display image from database. I am using Http Handler to display image. I will pass user id from text box and on click of search button I will display image into Image control.
-
Insert Image into Folder and Database
File Upload control enables users to upload file to web application. After the file is uploaded, user can store the file in system. Normally,user store the file either on the file system or in a database. I had explain both approach below.
-
Effective Paging and Sorting Using GridView and ObjectDataSource – Part I
With ObjectDataSource, you can do paging and sorting very effectively in gridview. In real time, we have millions of records in database. At that time, when we have to fetch those records and display in grid will take more time which makes performance issue. For this purpose, objectDataSource provide an good option for using paging and sorting in gridview. I had taken help from asp.net book and modify some of things.