Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 Search Members
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 12 January 2003 :  07:58:44  Show Profile  Visit PeeWee.Inc's Homepage
How about a small include to search for users, sumthing that can be used in a portal where you just put in the members name and click on search and it takes you to that profile

De Priofundus Calmo Ad Te Damine

dayve
Forum Moderator

USA
5820 Posts

Posted - 13 January 2003 :  11:29:07  Show Profile  Visit dayve's Homepage
I think the members.asp page does this just fine. use the search and then click on their name or profile icon.

Go to Top of Page

Anacrusis
Junior Member

USA
219 Posts

Posted - 13 January 2003 :  14:28:09  Show Profile  Visit Anacrusis's Homepage  Send Anacrusis an AOL message
I have modefied my member profile page to accept a username and a user id, because of this you can then have a form to jump to a members profile by entering their username. Take a look at my site to see what I mean. If I get some time maybe I'll create a quick mod for it. It's really easy to do.

The Internet ClubHouse
www.internet-clubhouse.com
Go to Top of Page

Anacrusis
Junior Member

USA
219 Posts

Posted - 13 January 2003 :  15:13:13  Show Profile  Visit Anacrusis's Homepage  Send Anacrusis an AOL message
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.

The Internet ClubHouse
www.internet-clubhouse.com
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 13 January 2003 :  15:32:22  Show Profile  Visit PeeWee.Inc's Homepage
thank, just what i wanted

De Priofundus Calmo Ad Te Damine
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.28 seconds. Powered By: Snitz Forums 2000 Version 3.4.07