我在数据库中保存了一个长字符串,并希望在Winforms应用程序的文本区域中显示它。
我想突出显示字符串值中的字母,并将其保存在数据库中,并在文本区域中显示该值。
我该怎么做?
我的代码:
insert into table (Description)
select '<b>ערך אחד: <b>' + convert(NVARCHAR, t1.MonthlyReturnAmount) + nchar(13) + nchar(10) +
'<b> ערך שני: <b>' + convert(NVARCHAR, t1.LastPaymentDate) + nchar(13) + nchar(10) +
'<b> ערך שלישי: <b>' + case WHEN t2.IsActive=0 then 'לא' else 'כן' END
from table1 t1
join table2 t2 on t1.id = t2.filed