Hej igen. =) Du kan ju testa StrConv() funktionen:Första bokstaven till storbokstav?
Hur gör jag för att göra om den första bokstaven i en variabel till en stor bokstav och resten små?Sv: Första bokstaven till storbokstav?
<code>
Response.Write StrConv("Din Text",vbProperCase)
</code>
Eller om du bara vill ha första bokstaven:
<code>
Function ProperCase(Value)
ProperCase = UCase(Left(Value, 1)) & LCase(Mid(Value, 2))
End Function
Response.Write ProperCase("Din Text")
</code>