I use this code to get info from database where would i add picture link or what would i type in database
the filed is Pic
Dim SqlJunk
Set dbGlobalWeb = Server.CreateObject("ADODB.Connection"

dbGlobalWeb.Open("Members"
SqlJunk = "SELECT * FROM Members"
If Request.Form("TypeSearch"

= "UserID" Then
SqlJunk = SqlJunk & " WHERE UserID LIKE '%" & Request.Form("DaInBox"

& "%'"
End If
If Request.Form("TypeSearch"

= "Pic" Then
SqlJunk = SqlJunk & " WHERE Pic LIKE '%" & _
Request.Form("DaInBox"

& "%'"
End If
Set rsGlobalWeb = Server.CreateObject("ADODB.Recordset"

rsGlobalWeb.Open SqlJunk, dbGlobalWeb, 3
%>
<%
If rsGlobalWeb.BOF and rsGlobalWeb.EOF Then%>
<%
Do While Not rsGlobalWeb.EOF
%>
<tr bgcolor="#CCCCCC">
<td width="15%"><font color="#000000"><%=rsGlobalWeb("UserID"

%></font></td>
<td width="14%"><font color="#000000"><%=rsGlobalWeb("Pic"

%></font></td>
<% rsGlobalWeb.MoveNext
Loop
%>