Welcome to your one-stop information center on dance in Malaysia!!!
Geographically, Malaysia consists
of a peninsula (West Malaysia) and 2 states on the island of Borneo (Sabah and Sarawak) situated in South East Asia.With a history that is filled with passing travellers and tradesmen, Malaysia boasts a multi-racial population
that is predominantly Malay (60%), Chinese (30%), Indian (5%) and other minority races like the Arabs, Portuguese, Eurasians and so on making up the rest.DANCEMALAYSIA hopes to introduce you to the dances, the artists, dance companies, institutions and
various performances that are being staged.This
will be a very valuable resource center for students wishing to begin research, producers trying to locate talent and anyone who is interested in dance.
You are the guest
<%
dim fsoobject 'file system object
dim tsoobject 'tsxt system object
dim filobject 'file object
dim lngvisitornumber 'hold visitor number
dim loopcounter
set fsoobject = server.createobject("scripting.filesystemobject")
'Initialise a File Object with the path and name of text file to open
Set filObject = fsoObject.GetFile(Server.MapPath("hitcounter.txt"))
'Open the visitor counter text file
Set tsObject = filObject.OpenAsTextStream
'Read in the visitor number from the visitor counter file
lngVisitorNumber = CLng(tsObject.ReadAll)
'Increment the visitor counter number by 1
lngVisitorNumber = lngVisitorNumber + 1
'Create a new visitor counter text file over writing the previous one
Set tsObject = fsoObject.CreateTextFile(Server.MapPath("hitcounter.txt"))
'Write the new visitor number to the text file
tsObject.Write CStr(lngVisitorNumber)
'Reset server objects
Set fsoObject = Nothing
Set tsObject = Nothing
Set filObject = Nothing
'Display the hit count as text
'Response.Write(lngVisitorNumber)
'Loop to display graphical digits
For intWriteDigitLoopCount = 1 to Len(lngVisitorNumber)
'Display the graphical hit count
Response.Write("")
Next
'
%>