如何在SQL Server数据库中保存突出显示的字母。并使用C#在Winforms文本框中显示它

时间:2019-04-28 05:57:13

标签: c# sql-server winforms

我在数据库中保存了一个长字符串,并希望在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

0 个答案:

没有答案