Quote:
|
quote:<a href=update.asp?<%=(Recordset1.Fields.Item("pgm"). Value)%>&">"</a>
|
Well, you have to define a variable name and then assign a value from recordset.
Replace a quoted line with these lines:
Code:
<%
update_url="<a href=update.asp?pgm=" & Recordset1.Fields.Item("pgm").Value & ">"
update_url=update_url & Recordset1.Fields.Item("pgm").Value & "</a>"
Response.Write update_url
%>
...but the Soon is eclipsed by the Moon