Texbox Multiline property unavailable

Dohmaker

Member
Joined
Oct 4, 2007
Messages
13
Programming Experience
1-3
hi everyone,

I have a small problem and I've looked for a while on the internet without success so I'm asking here.

I am developping with Visual web developper 2005 and I want to set a textbox's multiline property to true, but that property is not available to me and I can't figure out why. Anyone has any ideas?

thanks!
 
The Textbox server control (from System.Web.UI.WebControls) doesn't have a Multiline property, but it does have a TextboxMode property where you can select Multiline as an option.

Thread moved to ASP.Net section.
 
thanks for the info! I figured it would be something silly like that. I actually had solved this problem a moment before, I went in the asp controls and just put TextMode="multiline".

Thanks for your help though!
 
Back
Top