Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8873613
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T18:30:34+00:00 2026-06-14T18:30:34+00:00

I am using json to run a function in code behind of my app.

  • 0

I am using json to run a function in code behind of my app. everything works fine except i cannot figure out how to pass hidden field to it here is my jquery code:

  $(document).ready(function () {
             $("input[id$='btnP']").click(function (e) {
 var hiddenfield= $("#<%=hidden.UniqueID%>"); //This Does not work!!!!!
                 $.ajax({
                     type: "POST",
                     url: "MyDoc.aspx/BtnOpen",
                     data: "{'message': '" + hidden.val() + "'}",
                     contentType: "application/json; charset=utf-8",
                     dataType: "json",

                     success: function (msg) {
                         if (msg.d == 'Sent') {

                         }
                         else {

                         }
                     }

                 });

                 e.preventDefault();
             });

EDIT:::

My hidden field is in gridview as so:

 <asp:TemplateField HeaderText="View">                      
         <ItemTemplate>
    <input type="submit" value="Send" id="btnP"  runat="server" />
    <asp:HiddenField runat="server" ID="hidden"  Value='<%# Eval("ID" )%>'  />
           </ItemTemplate>
             </asp:TemplateField>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T18:30:35+00:00Added an answer on June 14, 2026 at 6:30 pm

    there are a couple of options to take hidden field value:

    1) you can set up ClientIDMode attribute of your hidden field to Static

    <asp:HiddenField runat="server" ID="hidden" ClientIDMode="Static" Value="yourValue"/>
    

    and then you can use the following code:

    var hiddenField = document.getElementById('hidden');
    ....
    hiddenField.value
    

    2) use ClientID property:

    var hiddenField = $("#<%=hidden.ClientID %>");
    ...
    hiddenField.val();
    

    read about the difference between ClientID and UniqueID here

    UPD.

    If you need to pass some parameter from GridView to a function, you may not use HiddenField:

    Just remove “server” tag from your input and add onclick event.

    <asp:TemplateField HeaderText="View">                      
        <ItemTemplate>
           <input type="submit" value="Send" id="btnP" onclick="BtnOpen('<%# Eval("ID" ) %>');" />
        </ItemTemplate>
    </asp:TemplateField>
    

    And than add your function:

    <script>
        function BtnOpen(id) {
            $.ajax({
                type: "POST",
                url: "MyDoc.aspx/BtnOpen",
                data: "{'message': '" + id + "'}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
    
                success: function (msg) {
                    if (msg.d == 'Sent') {
    
                    }
                    else {
    
                    }
                }
            });
        }
    </script>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am using json to read records. It works perfectly fine if I use
I can run this code in Android app (using PhoneGap adn jQuery Mobile) but
I am attempting to run the following code snippet: var myVar1 = $.getJSON('myurl', function(json)
Here is a sample run of simple json using python2.4 version >>> >>> orig='{key1:Val,
$(function(){ $.getJSON('http://pipes.yahoo.com/pipes/pipe.run?_id=7ba696f34ae17b6fa8f5d4de13064dea&_render=json&callback=?',function(data){alert('called')}); }); i am using the above code to acess the a yahoo
I am using $(function() {}); to run jQuery events on page load. I have
I am using jquery 1.3.2 and have the following code, $(document).ready(function () { $.ajax({
I'm creating an app using the very slick KnockoutJS library, but I've run into
I'm trying to get JSON data from facebook using the following code: var getFriends
Am receiving null from json post using jquery. see my code below in order.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.