I am using asp.net 3.5.
My Hosting provider has given me a folder to upload my publish application, now when I am entering http://www.example.com, I am not getting my homepage, but when I am running the same application on my local I am getting home page.
Please let me know what I have to modify so that when usertype http://www.example.com it will open like http://www.example.com/homepage.aspx
Please help.
Thanks in advance
The standard default page name for ASP.Net is
Default.aspx, nothomepage.aspx.Rename the landing page to
Default.aspxOr, create a
Default.aspxpage and have it do a redirecthomepage.aspxOr, see if your hosting provider will configure your site to serve up
homepage.aspxas the default page.