You'd need to edit lines 143 and 144 of pop_profile.asp which currently look like the following:if strDBNTUserName = "" then
Err_Msg = "You must be logged in to view a Member's Profile"
Change the first line to compare the ID of the member attempting to view the profile, which is held in the MemberID variable, with that of the member whose profile they are attempting to view, which is held in the ppMember_ID variable. Then change the second line to whatever you want your new error message to be. The 2 lines should now look like the following:if MemberID <> ppMember_ID then
Err_Msg = "Your error message here"