Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 RSS 提要 http://xn--d1abbgf6aiiy.xn--p1ai/feeds 当我通过 Web ASP.Net MVC 应用程序添加此提要并调用解析提要的方法时,提要属性会自动从 ASCII 转换为 Unicode 表示特性。当我从 Windows 窗体调用相同的代码时,它仍然是属性中表示的 ASCII。
我确实希望保留从 FEED 解析的 ASCII 表示的 URL。我不知道这怎么会发生?
我找到了解决方案。它似乎与 web.config 设置有关
<configuration> <uri> <idn enabled="All" /> <iriParsing enabled="true" /> </uri> </configuration>