c#不支持URI格式

我试图将我的数据插入到xml文件中. xml文件位置

    path:http:// AutoCompleteInGridView new1 / Design / Pro / pricelist.xml.

    插入我的数据时,我得到错误URI格式不受支持.

    它显示参数异常未处理.我想保存我的xml

    服务器system.these url中的文件属于ServerPath位置.

    任何人都可以给我一个建议或链接来解决这些问题.

这是错误:

最佳答案 使用此示例:

                string uriPath = "YourAddress/pricelist.xml";
                string  localPath = new Uri(uriPath).LocalPath;
点赞