How to allow CORS for ASP.NET WebForms endpoint?(如何允许 ASP.NET WebForms 端点的 CORS?)
问题描述
我正在尝试将一些 [WebMethod]
带注释的端点函数添加到 Webforms 样式的 Web 应用程序(.aspx 和 .asmx).
I am trying to add some [WebMethod]
annotated endpoint functions to a Webforms style web app (.aspx and .asmx).
我想用 [EnableCors]
注释这些端点,从而获得所有好的 ajax-preflight 功能.
I'd like to annotate those endpoints with [EnableCors]
and thereby get all the good ajax-preflight functionality.
VS2013 接受注释,但端点仍然不能与 CORS 配合使用.(当使用同源而不是跨源时,它们工作正常).
VS2013 accepts the annotation, but still the endpoints don't play nice with CORS. (They work fine when used same-origin but not cross-origin).
我什至无法让它们在绒毛和脏污的情况下跨源运行
I can't even get them to function cross-origin with the down and dirty
HttpContext.Current.Response.AppendHeader("Access-Control-Allow-Origin", "*");
方法 -- 我的浏览器拒绝响应,并且不会出现跨域响应标头.
approach -- my browsers reject the responses, and the cross-origin response headers don't appear.
如何在这些 [WebMethod]
端点中获得 CORS 功能?
How can I get CORS functionality in these [WebMethod]
endpoints?
推荐答案
我建议仔细检查您是否已执行此页面上的所有步骤:ASP.NET 上的 CORS
I recommend double-checking you have performed all steps on this page: CORS on ASP.NET
除了:
Response.AppendHeader("Access-Control-Allow-Origin", "*");
也试试:
Response.AppendHeader("Access-Control-Allow-Methods","*");
尝试直接在 web 配置中添加:
Try adding directly in web config:
<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Access-Control-Allow-Methods" value="*" />
<add name="Access-Control-Allow-Headers" value="Content-Type" />
</customHeaders>
</httpProtocol>
</system.webServer>
否则,您需要确保您可以控制两个域.
Failing that, you need to ensure you have control over both domains.
这篇关于如何允许 ASP.NET WebForms 端点的 CORS?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何允许 ASP.NET WebForms 端点的 CORS?
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04