Displaying Formatted Text

by | 11 Feb 2017

Dynamically displaying formatted text is a pain. A label control can’t keep the format. People suggest to use multiline texbox but that doesn’t look good in a web page for announcement. Some suggests to use RichTextBox but that requires a great deal of coding. I always look for a simple solution, so I created a HtmlGenericControl (pre) on the fly and added it to a panel control. Hola, the format was protected. You can even add html control to a label too; I tested and it worked. Afterwards, you can use necessary style in the pre tag for your need.

//need to use the following library/namespace
Using System.Web.UI.HtmlControls;

//code behind
HtmlGenericControl hgcPre = new HtmlGenericControl(“pre”);
hgcPre.InnerText = “your formatted text”; //in my case data comes from a table
pnlFormatted.Controls.Add(hgcPre);

//style
Pre
{
  font-family: Tahoma, Verdana, Helvetica, Sans-Serif;
}

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.

Other Posts

ইংরেজিতে না প্লিজ

সাধারণত বাংলাদেশের পাবলিক বিশ্ববিদ্যালয়গুলোতে বাংলায় পড়ানো হয়। সেখানে ইংলিশের চর্চা নেই বললেই চলে। কিন্তু এসব প্রতিষ্ঠান থেকে ব্যাচেলর বা মাস্টার্স ডিগ্রি নিয়েই অনেক বাংলাদেশী মনে করে তারা যেহেতু সর্বোচ্চ ডিগ্রি নিয়ে ফেলেছে এখন অবশ্যই ইংরেজিতে লেখার যোগ্যতা অর্জন করে...

Telework

In our agency, employees are required to come to office only once in a week, so that their computer can get updates from the agency network. Rest of the days they are allowed to work from remote locations (home, hotel, etc.) which is called telework. I think 1/2 days...

My Grandmother

My mother’s mother is an unfortunate woman. She lost a daughter at its infancy, a son died at his childhood, a daughter died leaving three little kids – she raised the youngest one of them. Her husband died in her mid forties. Never married again she lived most of her...

The Whisperer

In college, I had a teacher, Douglas TheWhisperer (not giving the real last name intentionally), who would start talking in a normal voice or may be little louder and then his voice would gradually go down to whisper and around the end I wouldn't hear anything he was...

Windows Phone Emulator

Recently, I started to learn about creating applications for windows phone. However, every time I tried to run my application I started to get the following message: Clicking “Retry” worked but it was annoying, so I looked for a permanent solution. I found it and the...

মাততে পারেনি

যদিও শব্দটার অর্থ জানাছিল তবুও সিলেটী ভাইয়েরা যখন নিজেদের ভাষায় কথা বলেন তখন দুর্বোধ্য শোনায়। তাই যখন আমি আমার ছেলেকে আরবি পড়ার শেষে মসজিদ থেকে আনার সময় অন্য একজন অবিভাবক জিজ্ঞেস করলেন 'মাততে পারেনি' আমি বুঝতে পারিনি। দ্বিতীয়বার যখন বললেন 'ছেলে বাংলায় মাততে পারেনি'।...

Customer Service

I am pretty sure you deal with customer service representatives if you live in the USA. Most of the times it is their fault that you have to call them, for example, you bought something online but they sent a wrong/bad item, they charged something you don’t recognize,...