lowercase to uppercase in CAF

Hello,

My requirement::We are implementing one search screen wherein the user has to fill-in the details for a search on the DB. The user wants us to design the page in a way that if he fills the ‘Name’ filed in lower cases then the page should automatically convert it to uppercases before carrying out a search on the DB.

Could somebody please suggest a solution.

Regards
Jyoti

you can convert the name field to upper case…
1)On Blur of the text box using some java script.
2)Convert to upper case before making DB call.

Thanks
Baharul Islam

also you can use some custom converter to convert the string.If you use custom converter after page submit it will convert you message as well as it will also show the converted message in the text box.