Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Display color text in an <INPUT type="text"> field - how 1

Status
Not open for further replies.

TonyU

Technical User
Feb 14, 2001
1,317
US
[tt]
Shouldn't this work?? but it's not
<INPUT type=&quot;text&quot; STYLE=&quot;font-size:9pt;font-family:monospace;font-color:#336699&quot; name=&quot;daterequested&quot; value=&quot;&quot; size=&quot;11&quot;>
[tt]&quot;A Successful man is one who can build a firm foundation with the bricks that others throw at him&quot;[/tt]
[noevil]
 
change the font-color to just color then that should work, like this:

<INPUT type=&quot;text&quot; STYLE=&quot;font-size:9pt;font-family:monospace;color:#336699&quot; name=&quot;daterequested&quot; value=&quot;&quot; size=&quot;11&quot;>
 
[tt]Thanks arperry.

I have another question if you don't mind

I'm trying to create a schedule systems and besides the color issue you helped me with I have another problem that I'm not sure how to attack and would appreciate your help if possible.

I have a results page displaying information all users have just input, what I want to do is link a specific field (below)
<%=(views.Fields.Item(&quot;starttime&quot;).Value)%>
with a link to in order for the users (IF they need to) to edit that particular entry.

I'm thinking to do something like this perhaps

<%=(views.Fields.Item(&quot;starttime&quot;).Value)%>?ID=<%=views(&quot;id&quot;)%>
carrying the id for that record and on the edit page simply request all records where ID = the url id ?













[tt]&quot;A Successful man is one who can build a firm foundation with the bricks that others throw at him&quot;[/tt]
[noevil]
 
[tt]Never mind, I got it. Thanks
[tt]&quot;A Successful man is one who can build a firm foundation with the bricks that others throw at him&quot;[/tt]
[noevil]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top