Force case restrictions

You have a field in your database that you want to always be lowercase.

Try the following in your JavaScript:

<SCRIPT LANGUAGE="JavaScript">

function ChangeCase()
{
var strVariable = document.MyForm.txt_myfield.value;
strVariable = strVariable.toLowerCase( );
document.MyForm.txt_myfield.value = strVariable;
}

// End --></script>

To change the case to upper simply use toUpperCase() in your function above.

Hope this helps.

You might also like...

Comments

Super Tal Always working hard!!

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“It works on my machine.” - Anonymous