I want to display fields of hashtable using response.write
this showing error
out put should be
1 Hellow
2 World
3 Hellow
how it is possible
Regards
K L BAIJU
Hashtable myHash = new Hashtable();
myHash.Add("1", "Hello");
myHash.Add("2", "World");
myHash.Add("3", "Hello");
foreach (DictionaryEntry de in myHash)
{
Response.Write(de.Value+,de.Key + +"<br>");
}