Archive for 2009

New Year Wishes - Year 2010

New Year Wishes - Year 2010To my ever tolerant my friends and relatives, available round the clock for valuable support and guidance, and to all those who are very close to my heart, here is a special note, exactly a day before yet another sunrise in

New Year Wishes - Year 2010

New Year Wishes - Year 2010To my ever tolerant my friends and relatives, available round the clock for valuable support and guidance, and to all those who are very close to my heart, here is a special note, exactly a day before yet another sunrise in

New Year Wishes - Year 2010

New Year Wishes - Year 2010To my ever tolerant my friends and relatives, available round the clock for valuable support and guidance, and to all those who are very close to my heart, here is a special note, exactly a day before yet another sunrise in

What is an ASHX file Handler or web handler ?

In ASP.NET, you probably spend most of your time creating .aspx files with .cs files as code behind or use .ascx files for your controls and .asmx files for web services.A web handler file works just like an aspx file except you are one step back away

What is an ASHX file Handler or web handler ?

In ASP.NET, you probably spend most of your time creating .aspx files with .cs files as code behind or use .ascx files for your controls and .asmx files for web services.A web handler file works just like an aspx file except you are one step back away

What is an ASHX file Handler or web handler ?

In ASP.NET, you probably spend most of your time creating .aspx files with .cs files as code behind or use .ascx files for your controls and .asmx files for web services.A web handler file works just like an aspx file except you are one step back away

How to add jQuery intellisense in Visual Studio 2008

How to add jQuery intellisense in Visual Studio 2008. I will discuss the below items :How to add jQuery intellisense in .aspx page.How to add jQuery intellisense in external javascript file.Step 1 : Install Visual Studio 2008 Service Pack 1To see whether

How to add jQuery intellisense in Visual Studio 2008

How to add jQuery intellisense in Visual Studio 2008. I will discuss the below items :How to add jQuery intellisense in .aspx page.How to add jQuery intellisense in external javascript file.Step 1 : Install Visual Studio 2008 Service Pack 1To see whether

How to add jQuery intellisense in Visual Studio 2008

How to add jQuery intellisense in Visual Studio 2008. I will discuss the below items :How to add jQuery intellisense in .aspx page.How to add jQuery intellisense in external javascript file.Step 1 : Install Visual Studio 2008 Service Pack 1To see whether

Free eBook - jQuery Cookbook Dec 2009

Free download jQuery Cook book Dec 2009 edition.Use of jQuery :Create better, cross-platform JavaScript codeLearn detailed solutions to specific client-side problemsFor web designers who want to create interactive elements for their designsFor developers

Free eBook - jQuery Cookbook Dec 2009

Free download jQuery Cook book Dec 2009 edition.Use of jQuery :Create better, cross-platform JavaScript codeLearn detailed solutions to specific client-side problemsFor web designers who want to create interactive elements for their designsFor developers

Free eBook - jQuery Cookbook Dec 2009

Free download jQuery Cook book Dec 2009 edition.Use of jQuery :Create better, cross-platform JavaScript codeLearn detailed solutions to specific client-side problemsFor web designers who want to create interactive elements for their designsFor developers

Download : SQLite Expert Professional

SQLite Expert Professional v2.3.17.1934 PortableSQLite Expert is a powerful visual tool that enables you to easily administer your SQLite3 databases and gain significantly better visibility into how your databases are operating. SQLite Expert integrates

Download : SQLite Expert Professional

SQLite Expert Professional v2.3.17.1934 PortableSQLite Expert is a powerful visual tool that enables you to easily administer your SQLite3 databases and gain significantly better visibility into how your databases are operating. SQLite Expert integrates

Download : SQLite Expert Professional

SQLite Expert Professional v2.3.17.1934 PortableSQLite Expert is a powerful visual tool that enables you to easily administer your SQLite3 databases and gain significantly better visibility into how your databases are operating. SQLite Expert integrates

How to highlight the GridView rows when the mouse moves over it

In ASP.NET, in order to add a TextBox to the GridView you will need to add a Template Column. In most of the cases I suggest that you use the Template Column instead of the Bound Column. The reason is that by using the Template Column you can refer to

How to highlight the GridView rows when the mouse moves over it

In ASP.NET, in order to add a TextBox to the GridView you will need to add a Template Column. In most of the cases I suggest that you use the Template Column instead of the Bound Column. The reason is that by using the Template Column you can refer to

How to highlight the GridView rows when the mouse moves over it

In ASP.NET, in order to add a TextBox to the GridView you will need to add a Template Column. In most of the cases I suggest that you use the Template Column instead of the Bound Column. The reason is that by using the Template Column you can refer to

How to change the background color in the Textbox on focus ?

I searched the solution for the following situation. In asp.net web application, gridview contains textbox in each row. When there is focus on the textbox, the background colour of the textbox must be yellow with bold otherwise it must be black with

How to change the background color in the Textbox on focus ?

I searched the solution for the following situation. In asp.net web application, gridview contains textbox in each row. When there is focus on the textbox, the background colour of the textbox must be yellow with bold otherwise it must be black with

How to change the background color in the Textbox on focus ?

I searched the solution for the following situation. In asp.net web application, gridview contains textbox in each row. When there is focus on the textbox, the background colour of the textbox must be yellow with bold otherwise it must be black with

How to catch TAB key press with JavaScript?

The example code is tested in IE, Firefox and Opare. Probably also works in Netscape as well as others like Safari.<html><head><script type="text/javascript">var obj;var TAB = 9;function catchTAB(evt,elem){ obj = elem; var keyCode;

How to catch TAB key press with JavaScript?

The example code is tested in IE, Firefox and Opare. Probably also works in Netscape as well as others like Safari.<html><head><script type="text/javascript">var obj;var TAB = 9;function catchTAB(evt,elem){ obj = elem; var keyCode;

How to catch TAB key press with JavaScript?

The example code is tested in IE, Firefox and Opare. Probably also works in Netscape as well as others like Safari.<html><head><script type="text/javascript">var obj;var TAB = 9;function catchTAB(evt,elem){ obj = elem; var keyCode;

How to show a client-side message box at the next page load in ASP.NET

Showing a client-side message box at the next page load by use the below technique. ' Show a client-side message box at the next page load ' Example: ' ShowMessageBox(Me, "Order successfully submitted!") public void ShowMessageBox(System.Web.UI.Page

How to show a client-side message box at the next page load in ASP.NET

Showing a client-side message box at the next page load by use the below technique. ' Show a client-side message box at the next page load ' Example: ' ShowMessageBox(Me, "Order successfully submitted!") public void ShowMessageBox(System.Web.UI.Page

How to show a client-side message box at the next page load in ASP.NET

Showing a client-side message box at the next page load by use the below technique. ' Show a client-side message box at the next page load ' Example: ' ShowMessageBox(Me, "Order successfully submitted!") public void ShowMessageBox(System.Web.UI.Page

How to assign a default value to a Password Control in ASP.NET

If you set the TextMode property of a TextBox Web control to "Password" any default value you assign to the TextBox won't show up. To work around this problem, add the following code to your ASP page: There are two ways to initialize a TextBox whose

How to assign a default value to a Password Control in ASP.NET

If you set the TextMode property of a TextBox Web control to "Password" any default value you assign to the TextBox won't show up. To work around this problem, add the following code to your ASP page: There are two ways to initialize a TextBox whose

How to assign a default value to a Password Control in ASP.NET

If you set the TextMode property of a TextBox Web control to "Password" any default value you assign to the TextBox won't show up. To work around this problem, add the following code to your ASP page: There are two ways to initialize a TextBox whose

How to change the Title in a Web Form at runtime in ASP.NET ?

In ASP.NET, a web form's title is determined by the HTML View's Title attribute. However, there is no property in the default (or any other namespace) that helps you to change the title programmatically.Here's a simple workaround to accomplish this:1.

How to change the Title in a Web Form at runtime in ASP.NET ?

In ASP.NET, a web form's title is determined by the HTML View's Title attribute. However, there is no property in the default (or any other namespace) that helps you to change the title programmatically.Here's a simple workaround to accomplish this:1.

How to change the Title in a Web Form at runtime in ASP.NET ?

In ASP.NET, a web form's title is determined by the HTML View's Title attribute. However, there is no property in the default (or any other namespace) that helps you to change the title programmatically.Here's a simple workaround to accomplish this:1.

C# codes that improve productivity - Part 2

My early post, I explained five c# shorthands code tips. Again, I have listed another 5 C# shorthands that you can use to make your code too short.Read my previous post at C# codes that improve productivity - Part 16. Nullable objectsA variable needs

C# codes that improve productivity - Part 2

My early post, I explained five c# shorthands code tips. Again, I have listed another 5 C# shorthands that you can use to make your code too short.Read my previous post at C# codes that improve productivity - Part 16. Nullable objectsA variable needs

C# codes that improve productivity - Part 2

My early post, I explained five c# shorthands code tips. Again, I have listed another 5 C# shorthands that you can use to make your code too short.Read my previous post at C# codes that improve productivity - Part 16. Nullable objectsA variable needs