Intoduction :-
Hii Friends...
Today I explain how to convert lower case words to upper case . This task we can complete with the help of events. in asp.net there are many events like mouse-over,mouse-down,key press etc. So I explain this with the code.
Step : 1 The Code goes here :->
<html>
<head>
<script type="text/javascript">
function uppercase(x)
{
var y=document.getElementById(x).value;
document.getElementById(x).value=y.toUpperCase();
}
</script>
Enter your name<input type="text" id=x onkeyup="uppercase(this.id)">
</head>
</html>
DEMO:-
Hii Friends...
Today I explain how to convert lower case words to upper case . This task we can complete with the help of events. in asp.net there are many events like mouse-over,mouse-down,key press etc. So I explain this with the code.
Step : 1 The Code goes here :->
<html>
<head>
<script type="text/javascript">
function uppercase(x)
{
var y=document.getElementById(x).value;
document.getElementById(x).value=y.toUpperCase();
}
</script>
Enter your name<input type="text" id=x onkeyup="uppercase(this.id)">
</head>
</html>
DEMO:-
0 comments:
Post a Comment