Click here to Skip to main content
15,902,938 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Please give me some guidance for developing a orkut like application
When the user(u1) clicks on Recent Visited profiles, page should be directed to that recent visited user(Vp1) profile and then details and recent visitors for VP1 should be shown

Thanks
Smitha
Posted

1 solution

When the user(u1) clicks on Recent Visited profiles, page should be directed to that recent visited user(Vp1) profile
Simplest way: The names of the recent visitors are made hyperlinks. Those hyperlinks are made such that the userID of that person is added as a query string in the URL. Now, when user1 clicks the VisitorProfile1, VP1_ID is attached to the link and using a Response.Redirect/Server.Transfer to that link would lead you to a new page defined with the VP1_ID. Use the id and show the details.

Try!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900