Jody,
Thanks for your time! I don't belive your trying to get your post count up seeing that you only have 11 post. However, if you read over what I've explained as the problem... you will see I have already covered what Godaddy writes up about what to do with one site.... and have that working correctly. You can see that directly in the script part of my plea for help first post.
I did find this during my 24 hours of research:
Excuse me for being completely new to ASP.NET, but in I was wondering if you could point me to a tutorial on the "hosting multiple sites using default.aspx" method? I'd like to try this as I can't justify $15 per domain. Thanks!
Chris, here is the code I use in the root Web directory's default.aspx page to redirect the user to the appropriate subdirectory based on their URL (this code would go in the Page_Load event handler):
If Request.Url.Host.ToUpper().IndexOf("SCOTTONWRITING.NET") >= 0 then
Response.Redirect("/sowBlog/")
Response.End()
ElseIf Request.Url.Host.ToUpper().IndexOf("SKMMENU.COM") >= 0 then
Response.Redirect("/menu/")
Response.End()
ElseIf Request.Url.Host.ToUpper().IndexOf("NBAWEBLOG.COM") >= 0 then
Response.Redirect("/nba/")
Response.End()
End If
But that being the case... I have a welcome.html file first... instead of what this explains as the default.aspx file. So if I'm to use a default.aspx file, can someone send an example they might be using on godaddy?
If you read over this and you just understand me at all here... let me know so that I can explain better... regardless I need help from the dnn community.