0

aspx.csファイルのcssスタイルに問題があります

 HttpContext.Current.Response.Write("<table class=\'bordered\' cellpadding=\'5\' color: \'red\' <tr>");

class=\'bordered\'cellpadding=\'5\'動作し ますがcolor: \'red\'動作しません。問題が見つかりません。助けてください;)

4

3 に答える 3

3

colorstyleタグ内にラップする必要があります:

 HttpContext.Current.Response.Write("<table class=\'bordered\' cellpadding=\'5\' style=\"color:red;\"><tr>");

デモ: http://jsbin.com/ofapud

于 2012-05-06T15:09:45.720 に答える
1

'二重引用符を使用しているため、文字をエスケープする必要はありません。

これを試して:HttpContext.Current.Response.Write("<table class='bordered' cellpadding='5' color: 'red' <tr>");

于 2012-05-06T15:07:40.520 に答える
0

これは単純なはずです

Response.Write("<table class='bordered' cellpadding='5' color: 'red'> <tr>");
于 2012-05-06T15:26:15.713 に答える