|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You eat, breathe and sleep innovation. Build your mobile intelligence with BlackBerry® experts this July. Register Today! |
|
#1
|
|||
|
|||
|
Hyperlinks on Intranet
I have been successful with the creation of a database and a search results page. My need is for the following:<br><br>From the records returned in the results page I need to open another page (popup) with more detailed information about the chosen record.<br><br>Assistance is greatly appreciated.<br><br>The Dingbat <img src="/forum/emoticons/confused.gif" alt="confused">
|
|
#2
|
|||
|
|||
|
Just write a link around the record - its easier if you do this outside the HTML section<br><br>iterate the results<br><br>Do Until RECORDSET.EOF<br>strOutput = strOutput & "<a href=""linkpage.asp?=""" & RECORDSET("TABLENAMEFOR LINKPARAMETER") & """>" & RECORDSET("TABLENAMEFORRESULTSPAGEINFO") & "</a><br><br>RECORDSET.MoveNext<br>loop<br><br>then in the HTML section just call the variable<br><br><%=strOutput%>
|
|
#3
|
|||
|
|||
|
Forgot to give the querystring a name<br><br>That should read<br><br>"<a href=""linkpage.asp?QUERYSTRINGNAME=""" & etc
|
![]() |
| Viewing: ASP Free Forums > Database > Microsoft SQL Server > Hyperlinks on Intranet |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
![]() |
|