ASP.NET

Fix for Visual Studio 2010 – Hangs when debugging ASP.Net 3.5 Web application

Joel Varty , in his blog highlights fix for the users of Visual Studio 2010 who have problems with the IDE that hangs when debugging ASP.NET 3.5 applications.

The Bug information can be found in the Microsoft’s Connect site .

  • Share/Bookmark
Read more

9th Edition of Microsoft’s Virtual Techdays

Microsoft Virtual Techdays is back . It is one of the India’s premier online technical event and this time its the 9th Edition and will be held from August 18-20 , 2010 . The Microsoft’s Virtual Techdays is an Online event and will have about 30 sessions everyday and is completely FREE. The tracks are categorized [...]

  • Share/Bookmark
Read more

Themes for the Visual Studio 2010 IDE

I was searching for an Visual Studio extension which can theme the Visual Studio 2010 IDE , and found this nice extension “Visual Studio Color Theme Editor” created by Matthew Johnson .

  • Share/Bookmark
Read more

Visual Studio 2010 and .NET Framework 4 Training Kit – June 2010 Release

The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos that introduces or helps one to learn about Visual Studio 2010 features . The June 2010 Release of the Visual Studio 2010 and .NET Framework 4 Training Kit is now available for download . This covers some of the [...]

  • Share/Bookmark
Read more

Auto Implemented Properties in .NET

If we want to create a class with a bunch of public properties , we generally do it by storing the value of the properties in private field.

Eg :

Class Student

{

private int id;
public int ID
{
get
{
return id;
}
set
{
id=value;
}
}

}

  • Share/Bookmark
Read more

Autocomplete Extender Control in ASP.NET

AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will associate that control with a popup panel to display words that begin with the prefix typed into the textbox.

Extenders are server controls that allow to extend a set of ASP.NET server controls by adding client side functionality.

  • Share/Bookmark
Read more

Retreive User’s IP Address in ASP.NET

There may be a requirement of getting the user’s IP address using ASP.NET and C# or VB .NET when a user logs in to the webpage.

This can be achieved easily with the .NET Framework.

The IP Address can be retreived in the following ways.

  • Share/Bookmark
Read more

Adding Controls during Runtime ( Dynamically ) in ASP.NET

Well i have been wandering around here and ther for quite a few days in understanding how to dynamically create the controls during the runtime in VS 2008.
All it ended out to be a very simple one.

This is achieved through the methods Controls.add that is available with the panel or with each page.

  • Share/Bookmark
Read more

Adding rows and columns to DataGrid Dynamically

Well , it took me sometime to understand how to add rows and columns to the datagrid dynamically.Infact its very simple provided u remember to few syntax of DataColumn and DataRow.

Here are the steps.

  • Share/Bookmark
Read more