PURPOSE
I'm trying to create an email webform..

REQUIREMENT
I need a box for users to enter their Message.

ISSUE
In want to use TEXTAREA but I dont know whether its available in ASP.NET server controls..But certainly TEXTAREA control is available on the client HTML section.

QUESTION
Are there any other SERVER controls available to achieve the effect similar to TEXTAREA..

Thanks

Recommended Answers

All 3 Replies

duh...Whats the matter with me...

I right clicked the TEXTAREA and made it RUN as a Server Control....Its working fine..

Sorry

You can also set the "multiline" property of the standard TextBox control. That control will either render an <input> element or a <textarea> element, depending on the properties you set.

Thanks ..

TextBox1.TextMode = TextBoxMode.MultiLine

It works fine...

You can also set the "multiline" property of the standard TextBox control. That control will either render an <input> element or a <textarea> element, depending on the properties you set.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.