StringBuilder str=new StringBuilder();
str.Append("<div style='font-style:oblique;font-size:24px;text-align:left;margin-bottom:25px;'>");
str.Append("Products");
str.Append("</div>");
str.Append("<div style='font-style:oblique;font-size:18px;text-align:right;margin-bottom:25px;'>");
str.Append("<asp:TextBox ID='txtSearch' runat='server'></asp:TextBox> <asp:Button ID='btbSearch' runat='server' Text='Search'/>");
str.Append("</div>");
str.Append("<table width='100%' border='1' cellpadding='0' cellspacing='0'>");
2 番目<div>
の では、テキスト ボックスとボタンを作成し、それらをプレースホルダーに追加します。ブラウザー コンソールでデバッグすると、それらが html コードで表示されますが、ブラウザーには表示されず、ブラウザーにテーブルが表示されるだけです。これらのケースを機能させる例はありますか?