Kelly
|
| Posted: 11/30/2004, 7:36 AM |
|
What am I doing wrong?... http://www.itg.concentrichost.com/
|
|
|
 |
dataobjx
Posts: 181
|
| Posted: 11/30/2004, 11:23 AM |
|
First, your IIS server is serving up documents in the wrong order.
Example: Open IIS Manager on your server. Select a web site and perform a right click - properties.
Navigate to the "Documents" tab.
your document order might be;
default.html
index.html
default.asp
That's what appears to be happening here.
It should have this order instead.
default.asp
default.html
index.html
So what's happening is users are hitting your site and IIS is serving up the .html page rather than the .asp page which it needs to .
You may need to email your Hosting service with this info and ask them to change the 'document order/sequence' for your site.
That's that piece.
http://www.itg.concentrichost.com/default.html ==> brings up the page you describe
http://www.itg.concentrichost.com/default.asp ==> results in an "Internal Server Error"... so I cannot tell what that problem is.
Anyway, get your host to change the order in which IIS fires up the default page and move forward from there.
_________________
www.DataObjx.net
www.mydigitalapps.com |
 |
 |
|