 |
 |
1. Tell me more about the FREE SMS integration for 1 year. |
|
| | You
are given a one year free SMS integration service when you host with Exxelnet
Solutions. Setting up is easy. We will provide the script for you to paste in
your Contact Us page or any page of your preference. Visitors to your website
will be able to send you SMS instantaneously. To see a sample, visit
http://www.exxelnet.com/contactus.asp |
|
 |
 |
2. Search Engines Submissions |
|
| | |
|
 |
 |
3. What is a Meta Tag? |
|
| | It
is an identifying tag for HTML or XML documents that can be viewed in HTML or
XML source. The tag allows information such as keywords that identify content,
the author's name and other descriptive details. |
|
 |
 |
4. What can Meta Tags do for me? |
|
| | Many
engines rely on meta tags to index and categorize your web pages. You
should make sure that all important entry pages to your web site have at least
the KEYWORDS and a DESCRIPTION META tags included in the Header section of the
HTML code. This should be done BEFORE a submission. Without META tags,
some engines may not index your web site correctly, or downgrade your ranking. |
|
 |
 |
5. Some Hints on the usage of Meta Tags. |
|
| | The
following are some simple rules to help improve your page ranking using META tags.
This is a general guideline only, as all engines have their own specific rules
for determining page relevancy. | | |
| 1. |
Always include the most relevant keywords first. The relative position of keywords
can influence ranking on some engines. |
| 2. |
Do not repeat keywords in your meta tags eg: software,software,software,software
| | 3. |
Do not try to include every keyword in the dictionary. The more keywords you have,
the more you can diluted the perceived relevancy, which may result in downgrading
your engine ranking on some engines. | | 4. |
Some engines do not use META tags, so try and have the important keywords also
appear elsewhere in the visible text portion of your page. |
|
|
 |
 |
6. I need a form that allows surfers to my site to fill up a feedback form which is forwarded to |
my mail box upon submission. |
|
| | Please
unzip the 2 files below, formmail.asp and form.htm. Paste the script from formmail.asp.
onto your preferred page (e.g. enquiry page) and make sure you save the file as
the same name and on the same (www) directory as form.htm. ::
Download formmail.asp and form.htm
If you need to change the fields, you can get some reference
from the tutorials found in http://www.brainjar.com/asp/formmail/ |
|
 |
 |
7. I have uploaded my Access database file (.mdb file) into the DB folder, how should I connect to it? |
|
| | There
are 2 ways to connect to the .mdb file in the DB folder. a. DSN connection
b. DSN-less connection We recommend DSN-less connection as it
works faster and is more reliable compared to DSN connection especially when multiple
users are accessing your database concurrently. The DSN-less script
is provided below for your use. Please copy, paste it in your script and amend
the "filename" according to your requirement.
You may
email us
for
instructions if you still wish to use DSN connection. <%
dim RS, dbConn, dbPath dbPath
= Server.MapPath("db/filename.mdb") Set dbConn = Server.CreateObject("ADODB.Connection")
dbConn.open "PROVIDER=MICROSOFT.JET.OLEDB.4.0;DATA SOURCE=" & dbPath %> |
|
 |
 |
8. How do I create a counter for my website? |
|
| | Copy
the below script and paste it on the page where you wish to display the counter.
Save the file as index.asp. Ensure that hits.txt file is in the same directory.
<% Set FileObject
= Server.CreateObject("Scripting.FileSystemObject") Dir = Request.ServerVariables("SCRIPT_NAME")
Dir = StrReverse(Dir) Dir = Mid(Dir, InStr(1, Dir, "/")) Dir
= StrReverse(Dir) HitsFile = Server.MapPath(Dir) & "\hits.txt" On
Error Resume Next Set InStream= FileObject.OpenTextFile (HitsFile, 1, false
) OldHits = Trim(InStream.ReadLine) NewHits = OldHits + 1 Set OutStream=
FileObject.CreateTextFile (HitsFile, True) OutStream.WriteLine(NewHits) L=Len(NewHits)
i = 1 For i = i to L num = Mid(NewHits,i,1) Display = Display &
num Next Response.Write Display %> ::
Download hits.txt |
|
 |
 |
9. Why is it that I can list the files inside my web folders using the browser? |
|
| | This
is because you have activated the "Enable Directory Browsing" function in the
Hosting Controller. You may wish to deactivate it. |
|
 |
 |
10. How may I redirect my domain name to a specified page on my website. Eg. when a visitor clicks |
onto ymdomain.com, the browser is automatically redirected to mydomain.com/specialpromo.html. |
|
| | Please
insert <meta http-equiv="refresh" content="0;URL=specialpromo.html"> before
<head> tag on the index.html for redirection. |
|
 |
 |
11. The free web statistics is very comprehensive. However I do not understand all the terminology. |
|
| | Click
on this
link to help you
further understand the web stats. |
|