0

我有一个非常奇怪的问题,因为我无法发布任何带有句点的文本。这是我的 ajax 调用的网址:

url = 'BIReports/SaveReport/' + reportDescription;

如果 reportDescrption 中有句点,则不会发布。想法?

4

1 回答 1

1

Phil Haack 的博客中所述,您可能想尝试设置relaxedUrlToFileSystemMappingtrue.

<configuration>
  <system.web>
    <httpRuntime relaxedUrlToFileSystemMapping="true"/>

    <!-- ... your other settings ... -->
  </system.web>
</configuration>
于 2013-02-12T00:50:50.363 回答