私は以下を実装しようとしています:
eventListingPanel.Controls.Add(new LiteralControl("<div style="overflow :auto; width:200px; height:200px">"));
しかし、私はエラーが発生しています:
") 期待される"
上記のコードのキーワード overflow ,auto,200px, 200px の赤い下線
私は以下を実装しようとしています:
eventListingPanel.Controls.Add(new LiteralControl("<div style="overflow :auto; width:200px; height:200px">"));
しかし、私はエラーが発生しています:
") 期待される"
上記のコードのキーワード overflow ,auto,200px, 200px の赤い下線
これを試して:
eventListingPanel.Controls.Add(new LiteralControl("<div style=\"overflow :auto; width:200px; height:200px\"></div>"));
あなたはあなたの"
eventListingPanel.Controls.Add(new LiteralControl("<div style=\"overflow :auto; width:200px; height:200px\">"));