Thursday, July 8, 2010

How to show binary image in Asp.net grid view ?

Lets start by designing the GridView first.In the below Grid view the binary Image will be displayed in the ItemTemplate Column.

Wednesday, July 7, 2010

Guide to deploy Asp.net applications.

It was really painfull searching for an good article on deploying Asp.net applications till I found one.
I would like to share this. Please go through this , This is indeed very informative.
http://aspalliance.com/1464_Deploying_ASPNET_Applications.all

Thursday, July 1, 2010

How to simulate Enter keypress event using JavaScript ?

Lets assume we have username and password textboxes and when the user presses the enter key on username / password then it should simulate submit keypress.

Show loading Image between postback using Javascript

Its always good idea to show loading image when the user navigates from one page to another.It can be easily achieved by adding some events and javascript functionality.

Show loading Image between postback using Jquery

In one of my articles I have explained you how to show loading Image between postback using Javascript.

http://mani-thought.blogspot.com/2010/07/how-to-show-loading-image-between_01.html

How to focus first Textbox on a page using JQuery ?

Jquery really make life more easy.If I want to make first textbox focus in the form, I just need to add few lines of jquery code as below.