ASP Session Variable

J

Jeff Goebel

I've got a seesion variable which I want to display on a page. How do I do

This is the variable <%-name %> where "name" is the variable name.

It's THAT easy.
 
R

Ray

thanks, but if I want to display it in a text box, for instance, how would I
define its properties?
 
J

Jeff Goebel

thanks, but if I want to display it in a text box, for instance, how would I
define its properties?

The cool thing about ASP is that it can go anywhere... so if you want
it in a textbox, just place the code where you would normally do it.

<textarea>
<%=variable%>
</textarea>

or <input type=text value=<%=variable%>>
 
Top