有没有办法对SSRS报告的URL进行编码?
我尝试了以下方法,但输出与我需要的不匹配:
代码:
System.Uri.EscapeUriString("Receiving Inspection/Receiving Inspection End Of Lot")结果:
Receiving%20Inspection/Receiving%20Inspection%20End%20Of%20Lot我也试过..。
代码:
System.Uri.EscapeDataString("Receiving Inspection/Receiving Inspection End Of Lot")结果:
Receiving%20Inspection%2FReceiving%20Inspection%20End%20Of%20LotSSRS需要以下格式...
Receiving+Inspection%2FReceiving+Inspection+End+Of+Lot或者我应该用"+“符号代替空格?
感谢jlimited
发布于 2013-09-11 08:54:52
我偶然发现了这篇文章,可能会有帮助。http://www.jensbits.com/2012/01/23/generate-sql-server-reporting-services-ssrs-report-as-pdf-from-url-with-vb-net-or-c-net/
https://stackoverflow.com/questions/18730834
复制相似问题