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.
インライン コードを使用してテキスト ボックスに動的テキストを表示することはできますか? 以下を試しましたが、ブロック全体がテキストボックスに出力されます。
<asp:TextBox runat="server" ID="FirstName" ValidationGroup="" text='<%="test"%>' ></asp:TextBox>
ありがとう
これはあなたが探しているものですか?
<input type="text" value="<%=test%>" />