开发者

Why does my Azure application still point to default.aspx?

开发者 https://www.devze.com 2023-03-10 03:11 出处:网络
I have created a PivotViewer application with an Azure Web role, and it deploys on my local machine perfectly.When I deploy it to azure, the standard default.aspx \"My ASP.NET\" application is the loa

I have created a PivotViewer application with an Azure Web role, and it deploys on my local machine perfectly. When I deploy it to azure, the standard default.aspx "My ASP.NET" application is the loaded page. I can n开发者_开发知识库ot seem to find a solution in all of the tutorials. If I point the browser to http://solution.cloudapp.net/MyAzureStartPage.aspx, I can also find a perfect deployment, but I can't seem to get the proper home page.


Determining which page to load if none is explicitly specified is a function of the web server. Without configuration changes, the web server is never going to expect to look for your custom page.

Can you not simply rename your desired start page default.aspx? That would be the simplest approach.


Add defaultDocument element in your web.config under configuration/system.webServer node. Something like this will get your default page defined:

<defaultDocument enabled="true">
  <files>
    <add value="MyAzureStartPage.aspx"/>
  </files>
</defaultDocument>
0

精彩评论

暂无评论...
验证码 换一张
取 消