Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Multi Line GridView Column Cell

2.90/5 (16 votes)
12 Nov 2007CPOL 1   4  
Display multi line of text saved in the database

Introduction

I was working on a project , where I had to retrieve what was saved in the database and display it in the same cell, but multi line. Since the data was saved in the format of <br>, it was easy for me to display it.

  1. Create a new project using C#.

  2. Create a table in the database (SQL or MYSQL table or any other database):

    Screenshot - T7.jpg

  3. Save some data to the table. For example:

    Screenshot - T6.jpg

  4. Before you save the data to the table, replace the \r\n with <br>:

    Screenshot - T5.jpg

  5. Drag and drop GridView from the Tool Kit to the Web form.

  6. Create the following columns:

    Screenshot - T1.jpg

  7. Gridview will appear like this:

    Screenshot - T2.jpg

  8. Change the property of the Message column as shown below:

    Screenshot - T3.jpg

  9. Set the HtmlEncode to false.

  10. Write the code to fill the GridView. Here is a sample:

    Screenshot - T4.jpg

  11. The data will appear like this:

    Screenshot - T8.jpg

Points of Interest

It can be used to display text file data saved in the database.

It was very nice and easy to display multi lines of text in one cell. What we need to do is set the HtmlEncode property to false.

History

  • 12th November, 2007: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)