I'm looking to invoke a C# server method from JavaScript. Within my gridview, there is a column containing dropdown lists. When the value of the dropdown list changes, I need to use JavaScript to call a server-side method and update the value of another text box within the same gridview.
Currently, I can do this on the selected index change event, but I have concerns about performance.
My project is developed using ASP.NET with C#.
Please advise me on how to achieve this functionality efficiently.