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.
私の Page_Load では、テキストを値に等しく設定します。たとえば、txtNote.text="note text ex"
実際のフォームのテキストを別のものに変更した場合、新しい値をデータベースに書き込んでみてください...フォームに変更しました....これは変更できますか?
ありがとう、
次のように、割り当てをIsPostBackコントロールに取り込みます。
if (!IsPostBack) { txtNote.Text="note text ex"; }