Assign JavaScript values to C# Variable

后端 未结 2 1156
春和景丽
春和景丽 2021-01-06 23:53

I have a Javascript function that pulls down variables, like so:

   function OnClientCloseSecure(oWnd, args) {
       var arg = args.get_argument();

                


        
2条回答
  •  孤独总比滥情好
    2021-01-07 00:56

    One way would be to create hidden value and set the runat attribute to server. you can get the value.

         
    
    
    

    Code Behind:

        string value = Hidden1.Value;
    

提交回复
热议问题