asp.net - make the text for all textbox blue -


i have vb below:

 protected sub page_load(byval sender object, byval e system.eventargs) handles me.load     textbox1.forecolor = system.drawing.color.blue end sub 

my multiline textbox

  <asp:textbox id="textbox1" runat="server" textmode="multiline" height="300px" width="99.6%" enabled="false" ></asp:textbox> 

i have 100 textboxes. wonder if there simple code can make of textboxes blue?

thanks advice!

best use css this:

input[type=text] { color: blue; } 

it's practice have style defined in css file , reference asp.net page:

<link rel="stylesheet" type="text/css" href="styles.css"> 

Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -