The:
Notify me of replies to posts
and
Notify me by email when I receive a Private Message
are both set to "No" as s default
In the register.asp file I have seen the variables "blnReplyNotify" and "blnPMNotify" but can't find where that are being set as False
For receiving private messages this is the line I am talking about:
<td width="50%" valign="top"><% = strTxtYes %><input type="radio" name="pmNotify" id="pmNotify" value="True" <% If blnPMNotify = True Then Response.Write "checked" %> /> <% = strTxtNo %><input type="radio" name="pmNotify" id="pmNotify" value="False" <% If blnPMNotify = False Then Response.Write "checked" %> /></td>
</tr><%.
I understand what it is doing but can't backtrack it to where it is set to true or false.
Or could I just remove the checking like this:
<td width="50%" valign="top"><% = strTxtYes %><input type="radio" name="pmNotify" id="pmNotify" value="True" checked /> <% = strTxtNo %><input type="radio" name="pmNotify" id="pmNotify" value="False" /></td>
</tr><%
or something like that.
Please advise
Cheers
Justin