aspx.csファイルのcssスタイルに問題があります
HttpContext.Current.Response.Write("<table class=\'bordered\' cellpadding=\'5\' color: \'red\' <tr>");
class=\'bordered\'
cellpadding=\'5\'
動作し ますがcolor: \'red\'
動作しません。問題が見つかりません。助けてください;)
color
style
タグ内にラップする必要があります:
HttpContext.Current.Response.Write("<table class=\'bordered\' cellpadding=\'5\' style=\"color:red;\"><tr>");
'
二重引用符を使用しているため、文字をエスケープする必要はありません。
これを試して:HttpContext.Current.Response.Write("<table class='bordered' cellpadding='5' color: 'red' <tr>");
これは単純なはずです
Response.Write("<table class='bordered' cellpadding='5' color: 'red'> <tr>");