C#转码...急
数据库存储的url地址为: 
 http://localhost:8080/index.aspx?phase=%D5%FD%B1%E0%BF%C9%D1%D0 
 phase挂带的字符串被IE自动转换了,   现在要提取出 
 %D5%FD%B1%E0%BF%C9%D1%D0转换为正常可读取的文本   
 注:写的程序为Console程序
------解决方案--------------------添加web引用   
 string s =  "http://localhost:8080/index.aspx?phase=%D5%FD%B1%E0%BF%C9%D1%D0 ";   
 Console.WriteLine(System.Web.HttpUtility.UrlDecode(s.Split( '= ')[1], System.Text.Encoding.Default));
------解决方案--------------------楼上正解