Tuesday, April 24, 2012

Google Drive. Keep everything. Share anything.

0 comments 4/24/2012
Google Drive —a place where you can create, share, collaborate, and keep all of your stuff. Whether you’re working with a friend on a joint research project, planning a wedding with your fiancĂ© or tracking a budget with roommates, you can do it in Drive. You can upload and access all of your files, including videos, photos, Google Docs, PDFs and beyond.



Read More»

Thursday, March 1, 2012

Must Install Android Apps for Newbie

1 comments 3/01/2012
I have been using Android based mobile from last 3 months,i have tried a lot of apps and finally i am giving list of best apps in my concern

Andriod OS Apps:

  1. Advanced Task Killer 
  2. AVG Antivirus Free
  3. ASTRO File Manager
  4. Opera Mini web browser
  5. GO Launcher EX


Social Networking Android Apps:


  1. Facebook
  2. Twitter
  3. Google+
  4. fring
  5. eBuddy Messenger
  6. Skype

Read More»

Wednesday, December 21, 2011

How to Bind the DropDownList With Enum

0 comments 12/21/2011
We can Bind DropDownList with no of ways, Now I am going to show how to bind dropdown using ‘enum’. 

Check This How To Bind DropDownList Using List Collection and DataSet in Asp.Net



 Let’s take Countries ‘enum’ as follows

enum enCountries:int{India=0,USA,UK,UAE};


Read More»

Thursday, June 9, 2011

Blogger New Futures Are Available @ Draft

0 comments 6/09/2011
Blogger already promises to introduce more new futures in this year. Today my Blogger dashboard becomes more powerful with new features and look.


Read More»

Saturday, May 28, 2011

How To Bind DropDownList Using List Collection and DataSet in Asp.Net

0 comments 5/28/2011
We can bind DropDownList in Different ways by using List, Dictionary and DataSet.

To bind DropDownList we need to set some properties
DataSource
DataValueField
DataTextField
Let see how to use these properties to bind DropDownList

Binding DropDownList with List

In This Case the DropDownList both 'Value' and 'Text' field are same.

DropDownList ddl = new DropDownList();
List<string> countries = new List<string>();
countries.Add("USA");
countries.Add("India");
ddl.DataSource = countries;
ddl.DataBind();

Read More»
  • Friends
  • Poll
  •  

    Recent Posts

    New Comments

    Copyright 2008 All Rights Reserved Tech Tasks Template by Rajesh Kumar Chekuri

    Share
    Me
    Twitter Delicious Digg Stumbleupon Facebook More

    Connect to TT Facebook
    Back to Top