Is FrontPage supported by the H-Sphere control panel?


Is FrontPage supported by the H-Sphere control panel?

Yes. You can install or remove FrontPage extensions from the control panel. The extensions are required if you want to use FrontPage to publish your site, or run tools supported by FrontPage.

Third-level domains or sub domains


Does cpwebhosting.net support third-level domains or sub domains and Can i do it through control panel?

Yes, you can add as many levels of sub domains as you want. You can also create aliases for sub domains. This all is available through the H-Sphere control panel.

ASP – Active Server Pages


Active Server Pages is a server-side scripting technology which is developed by Microsoft.

With ASP you can create dynamic web pages by putting script code inside your HTML pages. The code is executed by the web server before the page is returned to the browser. Both Visual Basic and JavaScript can be used.

ASP is a standard component in Windows 95,98, 2000, and XP. It can be activated on all computers running Windows.

Many web hosting providers are offering ASP, as it is becoming a more and more popular technology.

You can also avail this facility in the Windows hosting plans of the cpwebhosting.net.

But, Microsoft’s ASP technology runs only on Windows platforms.

However, Chili!Soft ASP is a software product that allows ASP to run on UNIX and some other platforms.

Does H-Sphere support python scripts?


Does H-Sphere support python scripts?

Although H-Sphere doesn’t provide centralized management for python scripts, you can add python support manually. For Unix hosting you just need python support installed on the web box. Windows hosting requires additional coding for this.


Can my customers use their own scripts?
Yes. CGI, PHP, and ASP support will be included into their accounts if you enable support for these scripts in their plans.

I m a Reseller,Can my clints set password protection to their files and directories?
Yes. Starting with H-Sphere 2.3 RC4, this feature is integrated into WebShell.

understanding the meaning of the ASP.NET


understanding the meaning of the ASP.NET

The promise of Microsoft’s ASP.NET is that “writing dynamic, high-performance Web applications has never been easier.” That sure sounds good, doesn’t it? But for many non-developer professionals who are involved in one way or another with the Web development process, the devil is in the details of how this is achieved. So here’s a look at how some of the developer jargon translates into everyday language.

System Directory with ASP.NET


How can I find out my System Directory with ASP.NET?

Use this

<%
Response.Write(“The System Directory is ” & System.Environment.SystemDirectory.ToString() )
%>

Which features of MS SQL are supported through H-Sphere?


Which features of MS SQL are supported through H-Sphere?
You can create user logins, databases, and db users with different database permissions.
Can windows-based accounts use MySQL services?
Yes, MySQL can be installed on any Unix box, and you must have at least one (the control panel).

Which page code model is better


Which page code model is better, single-file or code-behind?

Both models have the same performance.

The choice of using single-file pages versus code-behind pages
depends on your personal preference and convenience.

where the temp directory is located


How can I find out where the temp directory is located ?

try this

<%
Response.Write(“The TEMP environment variable is : ” & Environment.GetEnvironmentVariable(“TEMP”))
%>