1

My web role is intended to run an ASP.NET application. I tried to publish the application to local IIS and it runs smoothly. But when I press F5 to run it in Azure development fabric, it gives me this:

enter image description here

Not sure how to troubleshoot this...

Actually, the page title shows up at first, and then it changed to 500 error.

4

1 回答 1

0

You can turn CustomErrors off in your web.config to see the details behind your 500 error.

<customErrors mode="Off" />

Just be sure not to deploy to production with this setting.

于 2012-12-26T16:38:41.243 回答