Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
357 views
in Technique[技术] by (71.8m points)

How do I pass value from a javascript function to C# Code behind?

I have a dynamic button which have unique id's, I'm getting the id of the clicked button like so:

$("button").click(function() {
    //I want to pass this.id to my btnDetails_Click event in C# or to a variable Property(for efficiency)
});

How do I do this? Sorry noob in javascript.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

I won't code precisely for you, but maybe what I will include could help and point you to right direction in your own conclusion.

Okay, let us say that the page you are using is called Page.aspx, and the method is called Done

   var values = {"0,","1","2"};
   var theids = JSON.stringify(values);

   // Make an ajax call
   $.ajax({
     type: "POST",
     url: "Page.aspx/Done",
     contentType: "application/json; charset=utf-8",
     data: {ids: theids },
     dataType: "json",
     success: function (result) {
         alert('Alright, man!');               
     },
     error: function (result) {
         alert('Whoops :(');
     }
 });

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...