输入banner图图片脚本导航/分类

asp.net Hashtable 遍历写法

代码如下:
foreach (DictionaryEntry de in h)//h为Hashtable
{
Response.Write(de.Key + "<br />");
}