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.
これはすべて VB.NET です。
チェックボックスをチェックして選択した値を合計するためにjQueryを使用しています。jQ スクリプトは、「total」という ID を持つタグに合計を書き込みます。
<p id="total"></p>
IDが「合計」の段落のテキストを取得して、メールで送信するにはどうすればよいですか?
ありがとうございました
合計をasp:hiddenfield
asp:hiddenfield
<asp:HiddenField ID="myField" runat="server" />
コードビハインドでは、ID を使用して hiddenfield 値にアクセスできます
jquery を使用して、hiddenfield に値を書き込みます。
$('#<%= myField.ClientID %>').val('myvalue');