我有字符串消息,我想將HTML代碼放入控制器中。 我該怎麼做?如何在ASP.NET MVC控制器中編寫html代碼
string message = @"<div style="direction: ltr; width: 700px; margin: 0px auto; font-family:Verdana; font-size:11px; line-height:25px;">
<div style="line-height: 21px; color: rgb(68, 68, 68); font-family: Calibri, sans-serif; font-size: 15px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(255, 255, 255);">
<div style="line-height: 21px; min-height: 14px;">
<br class="Apple-interchange-newline" />
<br style="line-height: 21px;" />
</div>
</div>";
但它顯示錯誤。 我該怎麼做?
返回一個字符串或值到您的視圖,然後運行某種類型的IF語句不是一個選項?該視圖應該處理html ...否? –