我有这个非常奇怪的问题,因为我无法发布任何带有句号的文字。这是我的ajax电话的网址:
url = 'BIReports/SaveReport/' + reportDescription;
如果reportDescrption中有句号,则不会发布。想法?
答案 0 :(得分:1)
如Phil Haack's blog所述,您可以尝试将relaxedUrlToFileSystemMapping
设为true
。
<configuration>
<system.web>
<httpRuntime relaxedUrlToFileSystemMapping="true"/>
<!-- ... your other settings ... -->
</system.web>
</configuration>