I've got a seesion variable which I want to display on a page. How do I do it? Ray
R Ray Jul 8, 2004 #1 I've got a seesion variable which I want to display on a page. How do I do it? Ray
J Jeff Goebel Jul 9, 2004 #2 I've got a seesion variable which I want to display on a page. How do I do it? Click to expand... This is the variable <%-name %> where "name" is the variable name. It's THAT easy.
I've got a seesion variable which I want to display on a page. How do I do it? Click to expand... This is the variable <%-name %> where "name" is the variable name. It's THAT easy.
R Ray Jul 9, 2004 #3 thanks, but if I want to display it in a text box, for instance, how would I define its properties?
J Jeff Goebel Jul 13, 2004 #4 thanks, but if I want to display it in a text box, for instance, how would I define its properties? Click to expand... 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%>>
thanks, but if I want to display it in a text box, for instance, how would I define its properties? Click to expand... 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%>>