i have a TextBox control
on my masterpage
<asp:TextBox ID="txtSubject" runat="server" Width="280px" CssClass="formtxt"
onblur="if(this.value=='') this.value='Enter text,150 characters only';"
onfocus="if(this.value == 'Enter text,150 characters only') this.value='';"
Text="Enter text,150 characters only" CausesValidation="false"></asp:TextBox>
the problem is that, i dont want the textbox to have a setfocus due to the watermark on the textbox; if i have a setfocus on the textbox the watermark is now showing.