If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > Changes In Textboxes

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 02-17-05, 03:53
michaelfg81 michaelfg81 is offline
Registered User
 
Join Date: Mar 2004
Posts: 202
Changes In Textboxes

Hi,

Can anyone tell me how to change the font,color and alignment in a textbox
from HTML page (ASP)?
Thanx a lot
Reply With Quote
  #2 (permalink)  
Old 02-17-05, 04:02
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
Example of a right-aligned textbox:
<input type="text" value="hi" style="text-align:right">

White on dark gray readonly:
<input type="text" name="MyField" size="13" readonly="true" style="color:white; background-color:gray" value="<%= MyField %>">

Black on light gray readonly:
<input type="text" name="MyField" size="13" readonly="true" style="background-color:#DDDDDD" value="<%= MyField %>">

And of course you can put a lot of things into the style="..." part separated by semicolons.

CSS Examples
http://www.w3schools.com/css/css_examples.asp
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips

Last edited by Bullschmidt; 02-17-05 at 04:15.
Reply With Quote
  #3 (permalink)  
Old 02-17-05, 22:01
michaelfg81 michaelfg81 is offline
Registered User
 
Join Date: Mar 2004
Posts: 202
Hi Bullschmidt,

Thanx.It works.
Thanx again
Reply With Quote
  #4 (permalink)  
Old 02-17-05, 23:34
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
Hi michaelfg81, you're welcome, and glad it worked!
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On