简体   繁体   English

Windows Azure中托管带有输入控件的页面无法访问?

[英]A page with input controls when hosted in windows azure is not accessible?

Am trying to host an aspx page which takes input from user(has several textboxes). 我正在尝试托管一个aspx页面,该页面从用户那里获取输入(具有多个文本框)。 am able to access all other pages well. 能够很好地访问所有其他页面。 when navigated to that page, am getting an exception saying 导航到该页面时,出现异常提示

The content is blocked due to security reasons. 由于安全原因,该内容被阻止。

Please help me out!! 请帮帮我!!

There is nothing in Azure that would block your ASPX page from being accessed due to security reasons. 由于安全原因,Azure中没有任何东西可以阻止您的ASPX页面被访问。 So, this is either the problem of misconfigured web.config , wrong page certificate (as long as you are using HTTPS connection) or your browser. 因此,这可能是web.config配置错误,页面证书错误(只要使用HTTPS连接)或浏览器的问题。

Try to search your web.config for similar lines: 尝试在web.config搜索类似的行:

 <authorization>
   <deny users="?"/>
 </authorization>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Azure上托管有Dreamspark订阅的网站是否可以公开访问? - Are Websites Hosted on Azure with Dreamspark subscriptions publicly accessible? 输入控件过高时,网站页面性能如何? - What is website page performance when input controls exceed high? .aspx页的控件无法在.aspx.cs页中访问 - Controls of .aspx pages are not accessible in .aspx.cs page 嵌套ASCX控件的属性无法在页面级访问 - Nested ASCX controls' properties not accessible at Page-level 在ASP.net页面生命周期中,可以访问哪个状态的控件? - In ASP.net Page life cycle on which state Controls is accessible? VB中的Windows Azure存储:不在托管服务或开发结构中运行 - Windows Azure Storage in VB: Not running in a hosted service or the Development Fabric 当我创建Windows Azure负载平衡VM时,我的Web应用程序无法正确呈现Ajax控件 - When I create Windows Azure Load Balanced VM's my web application does not render the Ajax Controls correctly 托管在Windows Service中的Cassini-Dev中的Windows身份不正确 - Incorrect windows identity in Cassini-Dev when hosted in Windows Service ASP.NET的可访问控件 - Accessible controls for ASP.NET 当页面上有2个下拉控件时,验证控件不起作用 - validation control not working when there are 2 dropdown controls on page
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM