Uppercase
How do i change string to uppercase in asp? What does "Ignorecase" does? will it help if i decide to compare 2 strings?
View RepliesHow do i change string to uppercase in asp? What does "Ignorecase" does? will it help if i decide to compare 2 strings?
View RepliesI'm a total asp novice, but could you tell me if the following is possible:
I have a field that contains text with titles in uppercase e.g.
THIS IS TITLE 1
Text goes here
THIS IS TITLE 2
Text goes here
Is there any way to make rows in uppercase display in bold?
I'd like to know how can I make the first letter of every word on a textbox field, uppercase, automatically. I'd like to use this for the Name and Surname field, but I don't know how?
View Replies View Relatedi need to convert the first letter of a veriable to uppercase (the veriable is loaded and the applied LCase() ).
View Replies View RelatedI want to take a value that users type into a field (actually 2 fields--first and last name) and convert the first letter to Upper Case. I thought I could use UCase, but it seems to only work for an entire string.
View Replies View RelatedI have a form, where the user types their initals and it then returns some results. However, the Oracle database requires the initials to be in capitals, how can I convert the user input to upppercase?
View Replies View RelatedI'd like to know how can I make the first letter of every word on a textbox field, uppercase, automatically. I'd like to use this for the Name and Surname field, but I don't know how... any hint?
View Replies View RelatedWhat's a way (like, for a username) to allow lowercase and uppercase letter, and numbers?
Code:
objRegExp.Pattern = "[a-z][0-9]"
objRegExp.Global = True
objRegExp.IgnoreCase = True
That's what I have, but I want to make the letters or numbers OPTIONAL, but right now they are required. how can I fix that?