0

次のコードを変更して、タイトル文字列の値を2行に分割するにはどうすればよいですか?センターアラインも機能していないようです。私は何かが足りないのですか?

@{ 
    Html.RenderAction(
        "GenericPopupPartial", 
        "Shared", 
        new { 
            containerName = "registerSuccess",  
            BodyHtml = Model.MessageSent, 
            Title = "Thank you for registering!       Our representatives will  review your request and email you with access to our product section shortly." 
            }
        );
}

<a class="fbox1" id="registerSuccess-link" href="#registerSuccess" style="display: none; text-align:center;"></a>

次のように出力します。

登録していただきありがとうございます!当社の担当者がお客様のリクエストを確認し、まもなく当社の製品セクションにアクセスできるようにメールでお知らせします。

4

2 に答える 2

1

試してみてください\n

Title = "Thank you for registering!\nOur representatives will  review your request and email you with access to our product section shortly."
于 2013-01-31T14:54:16.407 に答える
1

試す

  @Html.Raw(Html.Encode(Model.MultiLineText)  

行の間に\n文字を含めます

以下は、「break」文字を改行に置き換えます。多分それを試してみてください。

@Html.Raw(Html.Encode(Model.MultiLineText).Replace("\n", "<br />")){"GenericPopupPartial", 
    "Shared", 
    new { 
        containerName = "registerSuccess",  
        BodyHtml = Model.MessageSent, 
        Title = "Thank you for registering! <br /> Our representatives will  review your request and email you with access to our product section shortly." 
        }
    );
}
于 2013-01-31T14:58:15.183 に答える