///

        /// 将字典转换成name=value这种字符串格式

        ///

        ///

        ///

        public static string DictionaryToStr(IDictionary dic)

        {

//使用排序字典

            dic = new SortedDictionary(dic);

            string strTemp = string.Empty;

            foreach (KeyValuePair item in dic)

            {

                if (!string.IsNullOrEmpty(item.Key) && !string.IsNullOrEmpty(item.Value))

                {

                    strTemp += item.Key + "=" + item.Value + "&";

                }

            }

            strTemp = strTemp.TrimEnd('&');

            return strTemp;

        }