Jaj
Jaj

Reputation: 98

Sending SMS text with line break/new line

I am developing SMS portal in asp.net c# where people register & send sms. I M Using multiline asp:textbox for input message. i want to break line where user hit enter/new line in textbox. help me if there any textboxeditor which support only <br/> or any other solutions.

Upvotes: 1

Views: 4134

Answers (2)

Iman
Iman

Reputation: 18906

from my own experience the default asp:textbox control with TextBoxMode=MultiLine; which automatically adds \r\n for line breaks will do the trick and no additional edit is needed and html tags like </br> is not processed .

Upvotes: 2

Andrew Orsich
Andrew Orsich

Reputation: 53685

Use textarea tag and escape text on the server side. Replace each line break with </br>, but other tags show as plain text or add some validation.

Upvotes: 2

Related Questions