Hi there i realy ned help from the greath programmers there is here.
I have download some mod from max webportall and spend lot of time to try to integrate this in my forums.
I have to insert this code here in inc_func_common.asp
becourse this is write to the old snitz v3.1/3.2 as maxwebportal use
function getMemberNumber(fUser_Name)
'## Forum_SQL
strSql = "SELECT " & strMemberTablePrefix & "MEMBERS.MEMBER_ID "
strSql = strSql & " FROM " & strMemberTablePrefix & "MEMBERS "
strSql = strSql & " WHERE M_NAME = '" & fUser_Name & "'"
set rsGetMemberID = my_Conn.Execute(strSql)
if rsGetMemberID.EOF or rsGetMemberID.BOF then
getMemberNumber = -1
exit function
end if
getMemberNumber = rsGetMemberID("MEMBER_ID")
end function