I've hosted my Visual Studio project on somee.com and I'm having trouble setting it up there. I've uploaded all the files of the Visual Studio Project (data layer, lib, model layer, sln file, suo file).
I found out that in order to assign the default page you need to write that in the web config file. I've written the following lines in my web config file.
<system.webServer>
<defaultDocument enabled="true">
<files>
<clear />
<add value="www.omsshutter.somee.com/www.omsshutter.somee.com/Shutter 2000 Halloween/login.aspx"/>
</files>
</defaultDocument>
</system.webServer>
The login.aspx page which I want to be the default page does not come up. It's in the "Shutter 2000 Halloween" folder. How can get this working?