I would like to know if there is a way to assign a particular value to a Session
that is in an ASP page through an ASP.NET page (aspx)? Both files are in the same solution. How do I do this?
I've tried:
<%= Session("pgm_retorno") %>
I would like to know if there is a way to assign a particular value to a Session
that is in an ASP page through an ASP.NET page (aspx)? Both files are in the same solution. How do I do this?
I've tried:
<%= Session("pgm_retorno") %>
Try to assign a value to it.
Example:
<%= Session("pgm_retorno") = "valor" %>