All articles from: July, 2009

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

Windows Mobile Developer Contest

Do you have a cool idea for a Mobile Application?

Here is a lifetime opportunity for you to showcase your development skills to the rest of the world and in the process, become a Millionaire. Pick any of the monthly themes and create a Windows Mobile Application which best showcases the versatility of the Windows Mobile platform. By doing it, you can help yourself win fabulous Cash Prizes, Phones, Certificates, Publicity

  • Share/Bookmark
Read more

GeekNight on “High Performance .Net Code”

About GeekNight

Informal meetings for tech people to exchange ideas,code and learnings. Held periodically at ThoughtWorks’ offices in Bangalore, Pune and Chennai.

Topic : Tips and Techniques for Writing High Performance .NET Code

Abstract of the Talk

  • 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

Yield keyword in C#

I got caught with this keyword recently.Very much unknown to me ,but when explored was able to know its real advantages.

It is used to iterate through objects ,create a enumerator returned by a method.

public static IEnumerable Test(int num)
{
for (int i = 0; i < num; i++)
{
yield return i;
}
yield break;
}

  • Share/Bookmark
Read more