Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

capturing value of variable for an input value 1

Status
Not open for further replies.

robertl

Programmer
Jan 8, 2001
23
GB
I'm trying to figure out what I need in order to take
the value that is returned by the line
Code:
gotUID = Session("UID")

and insert it into this line
Code:
<input type=&quot;text&quot; name=&quot;gotUID&quot; value=&quot;&amp;[gotUID]&quot;>
As you can see I've been messing around with the value=
parameter with no luck

More of the code snippet is below, thanks
for your assistance.


Code:
<%
  gotUID = Session(&quot;UID&quot;)
%>

<body bgcolor=&quot;#FFFFFF&quot;>
<center>
<h1>Documentation - B/L</h1>
</center>

<input type=&quot;text&quot; name=&quot;gotUID&quot; value=&quot;&amp;[gotUID]&quot;>
 
this should work:

<%
gotUID = Session(&quot;UID&quot;)
%>

<body bgcolor=&quot;#FFFFFF&quot;>
<center>
<h1>Documentation - B/L</h1>
</center>

<input type=&quot;text&quot; name=&quot;gotUID&quot; value=&quot;<%=gotUID%>&quot;>
jared@aauser.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top