I'm working on an application based on ASP but with underlying VB.NET code. I need to display some values in the ASP page that are in vars in the VB.NET code. Currently I'm doing this in the VB.NET code:
Session.Item("Varname") = NameOfVbVar
And this in the ASP page:
value='<%= session.item("Varname") %>'
However, I don't like setting everything in the session variables. Is there a way do omit using the session variables for this?
Session.Item("Varname") = NameOfVbVar
And this in the ASP page:
value='<%= session.item("Varname") %>'
However, I don't like setting everything in the session variables. Is there a way do omit using the session variables for this?