Customer Login . Webmail Login . About Us . Contact Us

Shared Hosting .NET FAQs

Educational Plan Version


Microsoft .NET Technologies Supported

.NET Framework v1 / ASP.NET v1.1
Mobile Internet Toolkit v1.1

Guidelines *A MUST READ*

1. Put all of your assemblies (.DLLs) in the \Webroot\BIN directory. They must be in this directory to work.

2. The web.config and global.asax files will only work when put in the \Webroot directory.

3. In your web.config file make sure you have the following settings:
<customErrors mode="Off" /> - This will show you your errors.
<authentication mode="Windows" /> - TAKE THIS OUT, or set it to forms when needed.
<sessionState /> - TAKE THIS OUT, the default needs to be used.

Frequently Asked Questions

I am getting a bunch of text that fills my page when I run my .NET application.
1. Read the guidelines above.
2. Make sure your assemblies (.DLLs) are in the Webroot\BIN directory. If not your application will not work.

My \Webroot\Application1\BIN directory is not working?
You have only ONE working BIN directory, the Webroot\BIN directory.
Will ASP 3.0 code work along side ASP.NET?
Yes, you can, they both work when .NET is installed on a server. However, they cannot share session data (you will have to do this manually).