How can insert words with special char like flower's, Newton's etc in C# using textbox with multiline mode

If you mean to save them in a database? If so, you'll need to encode them going in and then decode them when populatinging the textbox.

string toDatabase = Server.HtmlEncode(text);

string fromDatabase = Server.HtmlDecode(htmlEncoded);
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.