简体   繁体   中英

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). 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. So, this is either the problem of misconfigured web.config , wrong page certificate (as long as you are using HTTPS connection) or your browser.

Try to search your web.config for similar lines:

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM