From: 116 on
Thanks. I have been out there messing around. Earlier when I mentioned
field, I was referring to a Text Box in a form. Do this also apply there as
well?

David

"Ronx" wrote:

> <p style="text-transform: uppercase;">this will Appear as uppercase text</p>
>
> See tutorials at http://www.w3schools.com
> --
> Ron Symonds
> Microsoft MVP (Expression Web)
> http://www.rxs-enterprises.org/fp
>
> Reply only to group - emails will be deleted unread.
>
>
>
> "116" <116(a)discussions.microsoft.com> wrote in message
> news:D3294DD5-2F07-483D-851D-C295B7809610(a)microsoft.com...
> > Thank you Dan. But could you give an example? I have had very liitle
> > experience with css and html...Rookie.
> >
> > David
> >
> > "Dan L" wrote:
> >
> >> Use CSS to set the font to uppercase.
> >>
> >> "116" wrote:
> >>
> >> > In any give field, how can I force upper case, or lower for that matter
> >> > if
> >> > needed.
> >> >
> >> > Thanks
> >> > David
>
> .
>
From: Ronx on
Input renders as uppercase in FireFox and IE8:

<input name="Text1" type="text" style="text-transform: uppercase;" >

However, it is unlikely the text will be sent to the server as uppercase
when the form is submitted - but your form handler can change it if using
PHP, asp or asp.NET - FrontPage extensions will not change the case.
--
Ron Symonds
Microsoft MVP (Expression Web)
http://www.rxs-enterprises.org/fp

Reply only to group - emails will be deleted unread.



"116" <116(a)discussions.microsoft.com> wrote in message
news:15E09FA8-45AF-4AD3-A57F-03619D011C8E(a)microsoft.com...
> Thanks. I have been out there messing around. Earlier when I mentioned
> field, I was referring to a Text Box in a form. Do this also apply there
> as
> well?
>
> David
>
> "Ronx" wrote:
>
>> <p style="text-transform: uppercase;">this will Appear as uppercase
>> text</p>
>>
>> See tutorials at http://www.w3schools.com
>> --
>> Ron Symonds
>> Microsoft MVP (Expression Web)
>> http://www.rxs-enterprises.org/fp
>>
>> Reply only to group - emails will be deleted unread.
>>
>>
>>
>> "116" <116(a)discussions.microsoft.com> wrote in message
>> news:D3294DD5-2F07-483D-851D-C295B7809610(a)microsoft.com...
>> > Thank you Dan. But could you give an example? I have had very liitle
>> > experience with css and html...Rookie.
>> >
>> > David
>> >
>> > "Dan L" wrote:
>> >
>> >> Use CSS to set the font to uppercase.
>> >>
>> >> "116" wrote:
>> >>
>> >> > In any give field, how can I force upper case, or lower for that
>> >> > matter
>> >> > if
>> >> > needed.
>> >> >
>> >> > Thanks
>> >> > David
>>
>> .
>>
From: Jon Spivey on
For a form you're probably better using javascript to force upper case -
this way the form field contents will display to your user and be sent to
your server in upper case.

<input type="text" onkeyup="this.value=this.value.toUpperCase();"
name="whatever" />
or for lower case
<input type="text" onkeyup="this.value=this.value.toLowerCase();"
name="whatever" />


"116" <116(a)discussions.microsoft.com> wrote in message
news:15E09FA8-45AF-4AD3-A57F-03619D011C8E(a)microsoft.com...
> Thanks. I have been out there messing around. Earlier when I mentioned
> field, I was referring to a Text Box in a form. Do this also apply there
> as
> well?
>
> David
>
> "Ronx" wrote:
>
>> <p style="text-transform: uppercase;">this will Appear as uppercase
>> text</p>
>>
>> See tutorials at http://www.w3schools.com
>> --
>> Ron Symonds
>> Microsoft MVP (Expression Web)
>> http://www.rxs-enterprises.org/fp
>>
>> Reply only to group - emails will be deleted unread.
>>
>>
>>
>> "116" <116(a)discussions.microsoft.com> wrote in message
>> news:D3294DD5-2F07-483D-851D-C295B7809610(a)microsoft.com...
>> > Thank you Dan. But could you give an example? I have had very liitle
>> > experience with css and html...Rookie.
>> >
>> > David
>> >
>> > "Dan L" wrote:
>> >
>> >> Use CSS to set the font to uppercase.
>> >>
>> >> "116" wrote:
>> >>
>> >> > In any give field, how can I force upper case, or lower for that
>> >> > matter
>> >> > if
>> >> > needed.
>> >> >
>> >> > Thanks
>> >> > David
>>
>> .
>>


From: 116 on
Thank you much. Did the trick.

David

"Jon Spivey" wrote:

> For a form you're probably better using javascript to force upper case -
> this way the form field contents will display to your user and be sent to
> your server in upper case.
>
> <input type="text" onkeyup="this.value=this.value.toUpperCase();"
> name="whatever" />
> or for lower case
> <input type="text" onkeyup="this.value=this.value.toLowerCase();"
> name="whatever" />
>
>
> "116" <116(a)discussions.microsoft.com> wrote in message
> news:15E09FA8-45AF-4AD3-A57F-03619D011C8E(a)microsoft.com...
> > Thanks. I have been out there messing around. Earlier when I mentioned
> > field, I was referring to a Text Box in a form. Do this also apply there
> > as
> > well?
> >
> > David
> >
> > "Ronx" wrote:
> >
> >> <p style="text-transform: uppercase;">this will Appear as uppercase
> >> text</p>
> >>
> >> See tutorials at http://www.w3schools.com
> >> --
> >> Ron Symonds
> >> Microsoft MVP (Expression Web)
> >> http://www.rxs-enterprises.org/fp
> >>
> >> Reply only to group - emails will be deleted unread.
> >>
> >>
> >>
> >> "116" <116(a)discussions.microsoft.com> wrote in message
> >> news:D3294DD5-2F07-483D-851D-C295B7809610(a)microsoft.com...
> >> > Thank you Dan. But could you give an example? I have had very liitle
> >> > experience with css and html...Rookie.
> >> >
> >> > David
> >> >
> >> > "Dan L" wrote:
> >> >
> >> >> Use CSS to set the font to uppercase.
> >> >>
> >> >> "116" wrote:
> >> >>
> >> >> > In any give field, how can I force upper case, or lower for that
> >> >> > matter
> >> >> > if
> >> >> > needed.
> >> >> >
> >> >> > Thanks
> >> >> > David
> >>
> >> .
> >>
>
>
> .
>