Changing the Thank you message - Posted (1393 Views)
Junior Member
leesh695
Posts: 101
101
I want the Thank you message in post_info.asp to add the users title and name at the end.
I know I can use "" & strDBNTUserName & "" to add the name but not sure of the title can anyone help me please? bigsmile
<
 Sort direction, for dates DESC means newest first  
 Page size 
Posted
Junior Member
leesh695
Posts: 101
101
Well, I have added the fix that anon posted because you both seem to agree thats better:p

Thanks again for everything bigsmile<
Posted
Senior Member
muzishun
Posts: 1079
1079
You're quite welcome.<
Bill Parrott
Senior Web Programmer, University of Kansas
Co-Owner and Code Monkey, Eternal Second Designs (www.eternalsecond.com)
Personal Website (www.chimericdream.com)
Posted
Member Locked
cgcarter1
Posts: 14
14
I decide that having the user's number of posts was better. For instance:
Thank you JohnQSmith for your 123456 posts!
This is how I changed your code...
If mLev > 0 Then
strSql = "SELECT M_POSTS FROM " & strMemberTablePrefix & "MEMBERS WHERE MEMBER_ID = " & MemberID

set rsMposts = Server.CreateObject("ADODB.Recordset")
rsMposts.open strSql, my_Conn

MemberPosts = rsMposts("M_POSTS")

rsMposts.close
set rsMposts = nothing
End If<
You Must enter a message