Ok, here we go...
in pop_profile.asp change this:
If Request.QueryString("id") <> "" And IsNumeric(Request.QueryString("id")) = True Then
ppMember_ID = cLng(Request.QueryString("id"))
else
ppMember_ID = 0
end if
to this:
If Request.QueryString("username") <> "" Then
ppMember_ID = getMemberID(Request.QueryString("username"))
ElseIf Request.QueryString("id") <> "" And IsNumeric(Request.QueryString("id")) = True Then
ppMember_ID = cLng(Request.QueryString("id"))
else
ppMember_ID = 0
end if
then, anywhere on your site create a form that looks something like this:
<form action="pop_profile.asp" method="get">
<input type="hidden" name="mode" value="display">
<input type="text" name="username">
<input type="submit" value="Jump to Member">
</form>
That should work for ya.