I am trying to host a web application on somee.com and I transferred over my application files and setup the database as well. I have a handful of pages in my file manager and one of them is HomePage.aspx, which is supposed to be my startup page when the website loads and I also added this in the web.config file:
<defaultDocument>
<files>
<add value="HomePage.aspx" />
</files>
</defaultDocument>
But when I load the website, I get this page instead Wrong Homepage
This page is what we get as Default.aspx when we first load the asp.net web application project. Let's say that my project name is MyProject. I posted the files inside MyProject excluding the .vs, packages and .sln file into the root folder at somee.com. Is there anything else that I missed while setting up the files? Please let me know.