Skip to content

Infragistics Community Forum / Web / Ultimate UI for ASP.NET Web Forms / How do i access session variable from client side java

How do i access session variable from client side java

New Discussion
Ikenna Ononuju
Ikenna Ononuju asked on Jan 2, 2013 4:10 PM

Gday, can anyone help show me how to access session variable from java script. i have tried as in code below but no luck.

 

function wdgRegister_Selection_RowSelectionChanged(sender, eventArgs)

{

var vendor = eventArgs.getSelectedRows().getItem(0).get_cell(4).get_value();

<%Session(“RegisterId”) = vendor; %>

}

// –>

The above code is not working. can any one help. Thanks

Sign In to post a reply

Replies

  • 0
    Maya Kirova
    Maya Kirova answered on Jan 2, 2013 8:31 AM

    Hello Ikenna, 

    Thank you for posting in our forum.

     

    Session variables can be accessed on the client side. For example you could check the value by calling:

     

          alert('<%=Session["RegisterId"] %>');

     

    Anything between the "<%" and "%>" runs at the server so it will evaluate the current value of the session. However since it runs on the server it won’t be aware of any client side defined variables.

     

    Ultimately the session only exists on the server side so I would advise you to not attempt to set it directly on the client. Instead use a hidden field to store the values you need and then access the hidden field value on the server side from where you can store it in session if needed.

     

    Let me know if you have any questions or concerns.

     

    Best Regards,

    Maya Kirova

    Developer Support Engineer

    Infragistics, Inc.

    http://pt-br.infragistics.com/support

     

    • 0
      Ikenna Ononuju
      Ikenna Ononuju answered on Jan 2, 2013 4:10 PM

      Hi Maya,

       

      Thanks for the tip, i have now decided to use server side code to assign the session variable. Thanks

  • You must be logged in to reply to this topic.
Discussion created by
Favorites
Replies
Created On
Last Post
Discussion created by
Ikenna Ononuju
Favorites
0
Replies
2
Created On
Jan 02, 2013
Last Post
13 years, 1 month ago

Suggested Discussions

Created by

Created on

Jan 2, 2013 4:10 PM

Last activity on

Feb 11, 2026 9:40 AM