开发者

Is it possible to get values with C# from a dynamically added row with Javascript?

开发者 https://www.devze.com 2023-03-10 11:49 出处:网络
I开发者_开发知识库 have a table and rows are added by users by clicking in a button. I do this with Javascript.

I开发者_开发知识库 have a table and rows are added by users by clicking in a button. I do this with Javascript. But then I have to get the values with C# and add then to database. C# is mandatory. How can I do this?


Use AJAX to get/send the values from and to the server.


Probably the best way to do this would be to use AJAX. Since you're already using JavaScript, it would be a simple matter of adding the service call at the finalization stage of the action to implement the database changes directly.

http://msdn.microsoft.com/en-us/library/aa479042.aspx


you can do it by using jquery & ajax if you dont want you can put all new values in new rows in a hidden field (with a proper structure) and read hidden field value in server side

0

精彩评论

暂无评论...
验证码 换一张
取 消