| Advance
Users Support |
| If you
didn't find answer of your query Click
Here to contact us |
| ? |
Is there any ready-to-use
scripts available in DotState.com? |
 |
Yes, Your
account comes with Chat, Counter and Guest Book
preinstalled cgi scripts. Depending on the configuration
of your plan, they can be available in ASP,
PERL and/or PHP. |
| ? |
Do I need to pay to use these
scripts? |
 |
No, these
scripts are freeware and there is no extra charge
if you use on your website. |
| ? |
Can I edit these scripts to
use with my website? |
 |
Yes you can
change the configuration of a script, edit configuration
files in the directory of this script. |
| ? |
What pre-installed scripts
are available in ASP? |
 |
You can use
ASP Chat, Counter and Guest book. |
| ? |
Are these scripts available
in only ASP language? |
 |
No, these
scripts are available in PHP and CGI as well. |
| ? |
How can I use my CGI based
scripts? |
 |
Placed all
your CGI scripts in /cgi-bin folder to execute
them. |
| ? |
What is Web based
mail form script |
 |
'Dimension
variables
Dim objCDOSYSCon , objCDOSYSMail, Body
'Create the e-mail server object
Set objCDOSYSMail = Server.CreateObject("CDO.Message")
Set objCDOSYSCon = Server.CreateObject ("CDO.Configuration")
'Out going SMTP server
objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserver")
= "yourSMTPserver"
objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpserverport")
= 25
objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/sendusing")
= 2
objCDOSYSCon.Fields("http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout")
= 60
objCDOSYSCon.Fields.Update
'Update the CDOSYS Configuration
Set objCDOSYSMail.Configuration = objCDOSYSCon
objCDOSYSMail.From = "<senderEmailAddress>
"& SenderName
objCDOSYSMail.To = "yourEmailAddress@yourDomainName.com"
objCDOSYSMail.Subject = "Subject"
objCDOSYSMail.HTMLBody = "Message"
objCDOSYSMail.Send
'Close the server mail object
Set objCDOSYSMail = Nothing
Set objCDOSYSCon = Nothing
'Confirmation message
response.write "Message Sent" |