| <% Response.Write(strTxtProfile & ": " & strUsername) %> |
| <% = strTxtUsername %>: |
<% = strUsername %> |
<%
'If the user has an avatar then display it
If blnAvatar = True AND NOT strAvatar = "" Then
%>
| <% = strTxtAvatar %>: |
<% Response.Write(" ") %> |
<%
End If
'If there is a member title display it
If strMemberTitle <> "" Then
%>
| <% = strTxtMemberTitle %>: |
<% = strMemberTitle %> |
<%
End If
%>
| <% = strTxtGroup %>: |
<% = strGroupName %> ") %> |
| <% = strTxtAccountStatus %>: |
<% If blnActive = True Then Response.Write(strTxtActive) Else Response.Write(strTxtNotActive)%> |
<%
'If active users are enabled display if they are online or not
If blnActiveUsers Then
%>
| <% = strTxtOnlineStatus %>: |
<% If blnIsUserOnline = True Then Response.Write(strTxtOnLine2) Else Response.Write(strTxtOffLine)%> |
<%
End If
%>
| <% = strTxtRealName %>: |
<% If strRealName <> "" Then Response.Write(strRealName) Else Response.Write(strTxtNotGiven) %> |
| <% = strTxtJoined %>: |
<% = DateFormat(dtmJoined, saryDateTimeData) %> |
| <% = strTxtLastVisit %>: |
<% If isDate(dtmLastVisit) Then Response.Write(DateFormat(dtmLastVisit, saryDateTimeData)) %> |
| <% = strTxtPosts %>: |
<% = lngNumOfPosts %> <% If lngNumOfPosts > 0 AND DateDiff("d", dtmJoined, Now()) > 0 Then Response.Write("[" & FormatNumber(lngNumOfPosts / DateDiff("d", dtmJoined, Now()), 2) & " " & strTxtPostsPerDay) & "]" %> |
| <% = strTxtLocation %>: |
<% If strLocation = "" Or isNull(strLocation) Then Response.Write(strTxtNotGiven) Else Response.Write(strLocation) %> |
| <% = strTxtDateOfBirth %>: |
<%
'If there is a Date of Birth display it
If isDate(dtmDateOfBirth) Then
'As formatting the date also will add a time off set, make sure the date is correct
If strTimeOffSet = "-" Then
dtmDateOfBirth = DateAdd("h", + intTimeOffSet, dtmDateOfBirth)
ElseIf strTimeOffSet = "+" Then
dtmDateOfBirth = DateAdd("h", - intTimeOffSet, dtmDateOfBirth)
End If
'Display the persons Date of Birth
Response.Write(DateFormat(dtmDateOfBirth, saryDateTimeData))
Else
'Display that a Date of Birth was not given
Response.Write(strTxtNotGiven)
End If%> |
| <% = strTxtHomepage %>: |
<% If strHomepage = "" OR IsNull(strHomepage) Then Response.Write(strTxtNotGiven) Else Response.Write("" & strHomepage & "") %> |
| <% = strTxtOccupation %>: |
<% If strOccupation = "" OR IsNull(strOccupation) Then Response.Write(strTxtNotGiven) Else Response.Write(strOccupation) %> |
| <% = strTxtInterests %>: |
<% If strInterests = "" OR IsNull(strInterests) Then Response.Write(strTxtNotGiven) Else Response.Write(strInterests) %> |
| <% = strTxtEmail %>: |
<%
'If the user has choosen not to display there e-mail then this field will show private
If blnShowEmail = False AND blnAdmin = False AND strEmail <> "" Then
Response.Write(strTxtPrivate)
'If no password then display not given
ElseIf strEmail = "" OR isNull(strEmail) Then
Response.Write(strTxtNotGiven)
'If email address is shown and the email messenger of the forum is enabled show link button
ElseIf blnEmailMessenger AND blnEmail Then
Response.Write(" ")
'Else the user allows there e-mail address to be shown so show there e-mail address
Else
Response.Write("" & strEmail & "")
End If
%> | <%
'If the private messager is on show PM link
If blnPrivateMessages Then
%>
| <% = strTxtPrivateMessage %>: |
<% Response.Write(" ") %> |
<%
End If
%>
| <% = strTxtMSNMessenger %>: |
<% If strMSNAddress <> "" Then Response.Write(strMSNAddress) Else Response.Write(strTxtNotGiven) %> |
| <% = strTxtAIMAddress %>: |
<% If strAIMAddress <> "" Then Response.Write(" ") Else Response.Write(strTxtNotGiven) %> |
| <% = strTxtYahooMessenger %>: |
<% If strYahooAddress <> "" Then Response.Write(" ") Else Response.Write(strTxtNotGiven) %> |
| <% = strTxtICQNumber %>: |
<% If strICQNum <> "" Then Response.Write(" ") Else Response.Write(strTxtNotGiven) %> |