我想將我的數據插入到xml文件中。 xml文件位置 路徑:http://AutoCompleteInGridView%20new1/Design/Pro/pricelist.xml
。 當插入我的數據時,我得到錯誤URI formats are not supported
。 它顯示參數異常是未處理的。我想將我的xml 文件保存在server system
中。這些url屬於ServerPath位置。 任何人都可以給我一個建議或鏈接來解決這些問題。c#中不支持URI格式
這裏是錯誤:
我想將我的數據插入到xml文件中。 xml文件位置 路徑:http://AutoCompleteInGridView%20new1/Design/Pro/pricelist.xml
。 當插入我的數據時,我得到錯誤URI formats are not supported
。 它顯示參數異常是未處理的。我想將我的xml 文件保存在server system
中。這些url屬於ServerPath位置。 任何人都可以給我一個建議或鏈接來解決這些問題。c#中不支持URI格式
這裏是錯誤:
,你可以用這個解決方案嘗試:
基本上,使用
doc.Save(Server.MapPath("~/EEPPriceList/Products.xml"))
請不要「僅鏈接」答案。在這裏發佈答案的簡介。 – Litmus
嘗試這樣的:
string SavePathUrl = ConfigurationManager.AppSettings["SavePathUrl"];
string strFileName = DateTime.Now.ToString("dd-mmm-yyyy-hh-mm-ss-ffffff") + "^" + fileName;
File.WriteAllBytes(new Uri(SavePathUrl).AbsoluteUri + strFileName, Convert.FromBase64String(base64String));
return strFileName;
退房這個問題,因爲它可能會有所幫助。 http://stackoverflow.com/questions/12560664/exception-uri-formats-are-not-supported – devfunkd
感謝您的答覆。在該鏈接它給出了本地路徑的解決方案,但我需要服務器路徑。你能給我一個鏈接嗎? – raje
適用相同的概念,請參閱下面的答案。您需要創建字符串變量並將其傳遞給URI。 – devfunkd