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

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

       if (arg) {
           var ResultCode = arg.ResultCode;
           var PONumber = arg.PONumber;
       }
   }

I need to assign ResultCode and PONumber to a variable in C# or if that isn't possible a label in c#.

Are any of these options possible? If so, how would I go about doing that? I've tried several things with no luck. Thanks!

share|improve this question

2 Answers

up vote 4 down vote accepted

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

    <script type="text/javascript">
   function abc() 
    { 
      var str="value"; 
      document.getElementById("Hidden1").value=str; 
    } 

    </script> 

<input id="Hidden1" type="hidden" runat="server" />

Code Behind:

    string value = Hidden1.Value;
share|improve this answer

JavaScript

<script type="text/javascript">
    function OnClientCloseSecure(oWnd, args) {
        var arg = args.get_argument();
        if (arg) {
            var ResultCode = arg.ResultCode;
            var PONumber = arg.PONumber;
            document.getElementById('<%=lbl.ClientID %>').innerHTML = ResultCode;
        }
    }

</script> 

Mark Up

<asp:Label ID="lbl" runat="server" ></asp:Label>
share|improve this answer

Your Answer

 
or
required, but never shown
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.