1. 程式人生 > >C#對Url進行編碼和解碼

C#對Url進行編碼和解碼

直接上程式碼:

string sEncode = System.Web.HttpUtility.UrlEncode("測試檔名稱.doc");
string sFilePath = System.Web.HttpUtility.UrlDecode(sEncode);