Click here to Skip to main content
15,893,161 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a input control textbox

i want to use as multiline texbox for address

but it write text in a single line.

code is-

<input type='text' style='height: 40px;' class='unwatermarked'  id='txtAddress2_" & i & "'  maxlength='150' onkeydown='onKeyDown(this)' size='50' />"
Posted
Comments
sravani.v 5-Nov-11 5:06am    
Do you want multiline text box in asp.net?

You Can use taxtarea for multiline

HTML
<textarea rows="3" cols="20">
This is my text area.
</textarea>
 
Share this answer
 
v2
You can use <textarea></textarea> in Html control.
 
Share this answer
 
What about ASP.NET Textbox[^]? Give the value MultiLine for the property TextBoxMode[^]

W3schools example[^] for the textbox
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900