Carriage Return

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a textbox to contain a user input text
How can I detect the carriage return characte in the text
Thank You
 
Hi,

System.Environment.NewLine which stand for new line string defined for
current environment.

Request.Form[0].IndexOf(System.Environment.NewLine)


Natty Gur[MVP]

blog : http://weblogs.asp.net/ngur
Mobile: +972-(0)58-888377
 
Back
Top