密码保护 ATOM 源
Twitter ATOM 提要需要您的登录名和密码(显然),IE7 对此提供了很好的支持(显然 IE7 无法处理带有登录名/密码的 RSS 提要)。 当您注册 feed 时,IE 会显示一个简单的登录提示。
如何在 ASP.NET 中实现类似的功能而无需访问服务器或 IIS?
The Twitter ATOM feed requires your login and password (obviously), which is nicely supported by IE7 (apparently IE7 can't handle RSS feeds with login/pw). IE displays a simple login prompt when you register the feed.
How do I implement something similar in ASP.NET without access to the server or IIS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用一些基本 ASP 手动发送标头来请求通用 http 身份验证。
(复制自:http://psacake.com/web/fl.asp)
您可以如果您使用的是 asp.net,还可以在 web.config 中定义身份验证设置
<系统.web>
<认证模式=“基本”/>
You could send a header manually with some basic ASP to request generic http authentication.
( Copied from: http://psacake.com/web/fl.asp )
You could also define authentication settings in your web.config if you're using asp.net
<!-- Web.config file -->
<system.web>
<authentication mode="basic" />
</system.web>