how can i programing a private page ???

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/69360?pagenum=1
05 November 2025, 01:44

Topic


sbai
how can i programing a private page ???
04 June 2010, 19:22


hello every one !

I'd like to open a page for a member whose I select his number from the adminstration !

so I do this in config.asp :
Dim strIdMember
strIdMember = Application(strCookieURL & "STRIDMEMBER")

and i do this in admin_config_features.asp :

<td class=""h"" align=""center""><b>Enter The member id</b></td>" & vbNewLine & _
" <td class=""f2ts"">" & vbNewLine & _
" <input type=""text"" name=""strIdMember"" size=""45"" maxLength=""50"" value=""" & chkExistElse(strIdMember,"0") & """>" & vbNewLine & _
" <a href=""pop_config_help.asp?mode=features"">" & getCurrentIcon(strIconSmileQuestion,"","") & "</a></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr valign=""middle"">" & vbNewLine & _

now i want the condition wich allow the member id which i enter it to acces a page !!!!
It's like this :

if MemberID = chkString(strIdMember, "0") then
please help me !! blush

 

Replies ...


AnonJr
04 June 2010, 22:59


First, you're not likely to get too many people to see what they can do to help with a subject of "help *plz*" - we kinda figured you were looking for help when you posted to this forum, so maybe use something a little more descriptive. wink
Which leads to the second thing, I have no idea what you're trying to do... I know its hard when English isn't your first language, but could you try to give us a little more detail on what you are trying to do?
cripto9t
05 June 2010, 09:14


Did you add STRMEMBERID to the CONFIG_NEW table in the Database?
If you're not going to be changing the id number a lot, you could hard code it in config.asp like this:
Code:
Dim strMemberID: strMemberID = Member ID here
sbai
05 June 2010, 19:15


Originally posted by AnonJr
First, you're not likely to get too many people to see what they can do to help with a subject of "help *plz*" - we kinda figured you were looking for help when you posted to this forum, so maybe use something a little more descriptive. wink
Which leads to the second thing, I have no idea what you're trying to do... I know its hard when English isn't your first language, but could you try to give us a little more detail on what you are trying to do?

I'm trying to programming a page that no body can acces it , except the member who i set his ID in the adminstration blush
sbai
05 June 2010, 19:19


I want to programming a private page which controlled from the adminstration !!
leatherlips
05 June 2010, 20:13


You can set the forum to Allowed Member List (Hidden) and then select the members you want to access it.
cripto9t
06 June 2010, 10:48


Try again smile
Code:
if MemberID <> cLng(strIdMember) then Response.Redirect("default.asp")
sbai
06 June 2010, 16:33


Originally posted by cripto9t
Try again smile
Code:
if MemberID <> cLng(strIdMember) then Response.Redirect("default.asp")

thank you , I will try to do this condition !
© 2000-2021 Snitz™ Communications