In one of my datatable
column, I want the value to be shown in double quotes
AS:- "My value"
Below is my code:-
string StrPriBody = "Dear User, <br><br> The Number of days revised by you from " +
" " + table.Rows[0]["LAST_ACTION_DAYS"] + " days to " +
" " + table.Rows[0]["CURRENT_ACTION_DAYS"] + " days. <br /> " +
" with Remark <b> " + table.Rows[0]["REMARKS"] + "</b><br /><br />";
I want to show REMARK value in double quotes.
How to achieve that ?