The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
Sorry if this is the wrong forum for this.
I'm wanting my users to have the email notification for when they receive a PM turned on by default. Below is the section of code that needs to be edited but I'm an ASP moron so my attemps haven't been succesful. Anybody here want to take a crack at it? Should be easy for someone that knows what they're doing.
" <tr bgcolor=""" & strHeadCellColor & """>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """><b>Email Notification</b></font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr bgcolor=""" & strForumFirstCellColor & """>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """><b>" & strForumTitle & " can send you an e-mail notification whenever you receive a private message.</b><br>Please select your preference.<br>" & vbNewLine & _
" <input type=""radio"" name=""emailstorage"" value=""1"""
if rs("M_PMEMAIL") = "1" then
Response.Write(" checked")
end if
Response.Write "> Receive e-mail notification of private messages.<br>" & vbNewLine & _
" <input type=""radio"" name=""emailstorage"" value=""0"""
if rs("M_PMEMAIL") = "0" then
Response.Write(" checked")
end if
Response.Write "> Do not receive notification.</font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _<
I'm wanting my users to have the email notification for when they receive a PM turned on by default. Below is the section of code that needs to be edited but I'm an ASP moron so my attemps haven't been succesful. Anybody here want to take a crack at it? Should be easy for someone that knows what they're doing.
" <tr bgcolor=""" & strHeadCellColor & """>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """><b>Email Notification</b></font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr bgcolor=""" & strForumFirstCellColor & """>" & vbNewLine & _
" <td><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """><b>" & strForumTitle & " can send you an e-mail notification whenever you receive a private message.</b><br>Please select your preference.<br>" & vbNewLine & _
" <input type=""radio"" name=""emailstorage"" value=""1"""
if rs("M_PMEMAIL") = "1" then
Response.Write(" checked")
end if
Response.Write "> Receive e-mail notification of private messages.<br>" & vbNewLine & _
" <input type=""radio"" name=""emailstorage"" value=""0"""
if rs("M_PMEMAIL") = "0" then
Response.Write(" checked")
end if
Response.Write "> Do not receive notification.</font></td>" & vbNewLine & _
" </tr>" & vbNewLine & _<
