I am fairly new to ASP and so forth,, alot of learning.... been give the code to capitalize words of:
<%
Function PropCase(strTemp)
Dim intFound
Dim strTempName
Do
strTempName = strTempName & UCase(Left(strTemp, 1))
strTemp = Right(strTemp, Len(strTemp) - 1)
intFound = InStr(strtemp, " ")
If intFound <> 0 Then
strTempName = strTempName & Left(strTemp, intFound)
strTemp = Right(strTemp, Len(strTemp) - intFound)
Else
strTempName = strTempName & strTemp
Exit Do
End If
Loop While intFound <> 0
Response.Write strTempName
End Function
%>
When my users log on it says: welcome with the script <%
response.write(Session("MM_Username"))
%>! I am trying to fit this code to capitalize with the code I already have and I am not sure how or where to place it.
I appreciate anybodys help that can offer it. Thanks, Chuck