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 ASPX ページにラベルを追加したいと考えています。何も表示されませ<asp:label />んか?「Hello World」と言ってほしい
<asp:label />
ラベルを runat サーバーに設定してから、そのテキストを設定する必要があります。
<asp:label runat="server" Text="Hello World" />
私はあるべきです:
<asp:Label runat="server" Text="Hello World" />