Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.Net Web アプリケーションを作成しています。これはフォームであり、テキスト、ドロップダウン、チェック ボックスなどの内容は頻繁に変更されるため、ascx ファイルでマークアップを作成したくありません。XMLなどから動的に作成したい。
私のシナリオを達成するための最良の方法は何ですか?Web アプリケーションで XAML を使用できますか? ありがとう。
フォームに runat="server" タグを追加すると、そのコントロールをサーバー側でプログラムによって操作できます。
<form id="form1" runat="server"></form>
次に、サーバー側のコードで次のようにします
var lbl = new Label(); lbl.Text = "this is my label"; form1.Controls.Add(lbl);