2016-08-26 10 views
0

私はBootstrap v3.3 Modalを使用していますが、jqueryでラベルに値を代入していますが、C#でbutton_clickで割り当てられたlableの値を取得するにはどうすればよいですか? 私は値をテキストボックスに渡すことができますが、テキストボックスから値を取得できますが、lableから値を取得することはできません。 私は以下のコードを使用しています。ボタンクリックでjqueryでアサインされたラベルの値を取得する

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"> 
    <div class="modal-dialog" role="document"> 
     <div class="modal-content"> 
     <div class="modal-header"> 
      <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> 
       <h4 class="modal-title" id="exampleModalLabel" runat="server"></h4> 
     </div> 
     <div class="modal-body"> 
      <div class="form-group"> 
       <label for="recipient-name" id="lblOldValue" class="control-label" runat="server">Brand:</label> 
       <asp:TextBox ID="txtUpdate" runat="server" class="form-control"></asp:TextBox> 
      </div> 
     </div> 
     <div class="modal-footer"> 
      <asp:Button ID="btnUpdate" runat="server" class="btn btn-primary" Text="Save" OnClick="btnUpdate_Click"/> 
     </div> 
     </div> 
    </div> 
</div> 


$('#exampleModal').on('show.bs.modal', function (event) { 
     var button = $(event.relatedTarget); // Button that triggered the modal 
     var recipient = button.data('whatever'); // Extract info from data-* attributes 

     var modal = $(this); 
     modal.find('.modal-title').text('Edit: ' + recipient); 
     modal.find('modal-body lable').val(recipient); 
     modal.find('.modal-body input').val(recipient); 
    }); 

protected void btnUpdate_Click(object sender, EventArgs e) 
{ 
    string newValue = txtUpdate.Text; 
    string oldValue = lblOldValue.InnerText; 
} 
+0

ので、あなたは、単純なGoogle検索 'ヒットのjquery'トンでラベルの値が1秒未満で戻ってくる取得を行う方法を知っています... – MethodMan

+0

私はすでに別の解決策を検索して試してみましたが、私はうまくいく解決策を見つけることができませんでした。 –

答えて

0

私は、隠されたフィールドを使用して解決策を見つけました。

<asp:HiddenField ID = "hfName" runat = "server" /> 

document.getElementById("<%=hfName.ClientID %>").value = recipient; 

string oldValue = Request.Form[hfName.UniqueID]; 
関連する問題