Proteam Consulting is your one stop solution for offshore company formation, business and legal services. We incorporate companies anywhere in the world.
Our strategy is to provide responsive incorporation services, legal and quality management services to large corporates and small to medium sized enterprises seeking to develop their operations anywhere in the world. We also provide post incorporation services to ensure that Proteam Consulting is one stop solution for all services.
<% call totusers()
if Application("logusers")= "" Then Application("logusers")= 0
Response.Write ("Welcome! you are visitor number " & Application("totusers") ) %>
<%
Sub totusers()
set rs=Server.createobject("ADODB.Recordset")
rs.Open "SELECT totusers FROM visits",conn
If Not rs.EOF Then
Application("totusers")= rs("totusers")+ 1
Else
Application("totusers")= 1
End If
rs.Close
sql = "UPDATE visits SET totusers = "&Application("totusers")&" "
rs = conn.Execute(sql)
End Sub
%>