|
ASP.NET
ASP.NET, Microsoft's new platform for web application
development combines unprecedented developer productivity
with performance, reliability, and deployment. To find
out more, visit the APS.NET
website.
TOP^
CONTROL PANEL
Online control panel to change you ftp password, create
new email account, change email password. Manage folder
& file security and create new FTP accounts and
many other relevant features. The control panel gives
you full access over your webspace on our server and
administrative privilege.
TOP^
FTP account to access
your site 24/7.
You will be issued with an FTP account so that you
can upload the files for your website 24/7.
In order to use FTP you will need an FTP client. This
is a program that uses FTP to upload your files for
you. FileZilla, WSFTP, CuteFTP are commonly used FTP
clients.
When your domain becomes active on our servers you can
use ftp.yourdomain.com.
Download a free FTP software: FileZilla
TOP^
POP3 email or email forwarding
and Web Mail Access. You can create
your own email accounts using the hosting control panel.
Alternatively, all email can be forwarded to an existing
email address. Additionally you can check your email
from a regular web browser. Our Pop mailbox has worldwide
roaming facility. You can download the emails from the
server from anywhere and through any ISP connection.
TOP^
Perl5 support for your
CGI scripts. Perl 5 is installed on
all servers and you can run cgi scripts from any directory
within your webspace.
To learn, how to run Perl on Windows Server visit :
http://www.activestate.com
TOP^
WAP / WML Suppport
WAP is support by our server, you use wml & all
supported server side scripting to write professional
wap sites and wireless application software.
TOP^
PHP5 Support
PHP is a tool that lets you create dynamic web pages.
PHP-enabled web pages are treated just like regular
HTML pages and you can create and edit them the same
way you normally create regular HTML pages.
For more information please visit:
http://www.phpbuilder.com/getit/
http://php.resourceindex.com
http://www.phpworld.com/
http://www.hotscripts.com/PHP/
TOP^
Connect to Microsoft
Access databases (no additional cost).
You can connect to Microsoft Access databases using
DSN-less connections. DSN-less connections are faster
than System DSN connections because DSN-less avoids
doing a registry lookup. Furthermore you can receive
additional performance benefits by directly using the
OLEDB layer. You will also have a /db or /data directory
to store your databases in, this is above your webspace
and so is a much safer place to store sensitive information.
Your sites visitors will not be able to browse
this folder.
To open a Ms Access database which is kept in the DB
or DATA folder of your website, you may use this OLEDB
connection string:
Alternately you can use the older Microsoft Access ODBC
driver
The above connection string works if your asp page is
in the WWWROOT (web base) folder of you site. If you
want to access the database from a sub folder then you
should change the ../ of the string accordingly. For
example if you keep a file name test.asp in the folder
WWW/somefolder/test.asp then the string should be ../../
instead of ../
For Asp.net the above code does not work, it needs
a little modification: (two lines)
TOP^
File System Object ( FSO
) A new feature for Visual Basic (also
for ASP) is the File System Object (FSO) object model,
which provides an object-based tool for working with
folders and files. This allows you to use the familiar
object.method syntax with a rich set of
properties, methods, and events to process folders and
files, in addition to using the traditional Visual Basic
statements and commands.
The FSO object model gives your applications the ability
to create, alter, move, and delete folders, or to detect
if particular folders exist, and if so, where. It also
enables you to gain information about folders, such
as their names, the date they were created or last modified,
and so forth. In short it gives you complete access
over files and folders on the web server.
TOP^
FrontPage Extension,
ODBC Dsn
FrontPage extensions are provided with all accounts.
Required is you want to publish your website using FrontPage
or need the features of FP. Send a separate request
to activate FrontPage. ODBC DSN is also available to
connect to Your MS Access Database, we suggest using
DSN less connection if you are using Asp, by using Ado.
However if you need to connect to the database from
other scripts like perl, php, cold fusion or cgi then
you need ODBC. Send a mail to assign quota for your
ODBC.
TOP^
Collaboration Data
Objects ( CDO )
Collaboration Data Objects are a high-level set of
COM objects that allow you to easily access the e-mail
system embedded in the Microsoft Windows product line.
CDO objects are generally used by client applications.
For the most part, CDO objects are used by clients wanting
to access the e-mail system. Service providers must
be implemented using the native MAPI library.
CDOSYS is a built-in component in ASP. This component
is used to send e-mails with ASP.
Sending e-mail with CDOSYS
CDO (Collaboration Data Objects) is a Microsoft technology
that is designed to simplify the creation of messaging
applications.
CDOSYS is a built-in component in ASP. We will show
you how to use this component to send e-mail with ASP.
How about CDONTs?
Microsoft has discontinued the use of CDONTs on Windows
2000, Windows XP and Windows 2003. If you have used
CDONTs in your ASP applications, you should update the
code and use the new CDO technology.
Examples using CDOSYS
Sending a text e-mail:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%>
Sending a text e-mail with Bcc and CC fields:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.Bcc="someoneelse@somedomain.com"
myMail.Cc="someoneelse2@somedomain.com"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%>
Sending an HTML e-mail:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.HTMLBody = "<h1>This is a message.</h1>"
myMail.Send
set myMail=nothing
%>
Sending an HTML e-mail that sends a webpage from a
website:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.CreateMHTMLBody "http://www.w3schools.com/asp/"
myMail.Send
set myMail=nothing
%>
Sending an HTML e-mail that sends a webpage from a
file on your computer:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.CreateMHTMLBody "file://c:/mydocuments/test.htm"
myMail.Send
set myMail=nothing
%>
Sending a text e-mail with an Attachment:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.AddAttachment "c:\mydocuments\test.txt"
myMail.Send
set myMail=nothing
%>
Sending a text e-mail using a remote server:
<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From="mymail@mydomain.com"
myMail.To="someone@somedomain.com"
myMail.TextBody="This is a message."
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/sendusing")=2
'Name or IP of remote SMTP server
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserver")
_
="smtp.server.com"
'Server port
myMail.Configuration.Fields.Item _
("http://schemas.microsoft.com/cdo/configuration/smtpserverport")
_
=25
myMail.Configuration.Fields.Update
myMail.Send
set myMail=nothing
%>
TOP^
Technical Support
all the time
We offer technical support via e-mail. For support
related questions, please email support@palazon.com
We shall also provide a FAQ for your support. Our FAQ
shall be updated regularly by the support team.
TOP^
|