0

以下は私のコードです

btnDelete.Attributes.Add("onclick", "{return ConfirmAction('You are about to Delete Order . Please Note \r\n  1. Order no longer can be retrieved \r\n 2. Changes to the order are not saved. \r\n Are you sure you wish to continue to Delete?')};");

以下のように、確認ボックスに [はい] と [キャンセル] ボタンを含むメッセージを表示したいと思います。

注文を削除しようとしています。ご注意ください:
1.注文を取得できなくなりまし
た 2.注文への変更は保存されません
削除を続行しますか?

"\n" 、 '\n' 、および "\r\n" を試しましたが、まだ行を挿入できません。

4

3 に答える 3

3

文字列に文字列があるため、バックスラッシュをエスケープする必要があります。

btnDelete.Attributes.Add("onclick", "{return ConfirmAction('You are about to Delete Order . Please Note \\n  1. Order no longer can be retrieved \\n 2. Changes to the order are not saved. \\n Are you sure you wish to continue to Delete?')};");
于 2012-07-19T19:12:58.950 に答える
0
String buttonString = "{return ConfirmAction('You are about to Delete Order . Please Note \r\n  1. Order no longer can be retrieved \r\n 2. Changes to the order are not saved. \r\n Are you sure you wish to continue to Delete?')};"
buttonString = buttonString.Replace("\r\n", Environment.NewLine);
btnDelete.Attributes.Add("onclick", buttonString);
于 2012-07-19T19:16:41.347 に答える
0

使用しているコンポーネントはわかりませんが、試しました<br />か? HTMLを受け入れる場合、それはうまくいくかもしれません:)

于 2012-07-19T19:12:46.667 に答える