Hi,
Notify me of replies to posts Sends an email when someone replies to a topic you have posted in. This can be changed whenever you make a post. |
Yes< id=replyNotify = value=True name=replyNotify> No< id=replyNotify = value=False name=replyNotify> |
I want to change the settings of the above preference as YES by default.
How can i do this?
My code:
'If email notify is on give them a choice to receive mail or not
If blnEmail = True Then
%>
<tr bgcolor="<% = strTableColour %>" background="<% = strTableBgImage %>">
<td width="50%" class="text" background="<% = strTableBgImage %>"><% = strTxtNotifyMeOfReplies %>
<br /><span class="smText"><% = strTxtSendsAnEmailWhenSomeoneRepliesToATopicYouHavePostedIn %></span></td>
<td width="50%" valign="top" class="text" background="<% = strTableBgImage %>"><% = strTxtYes %><input type="radio" name="replyNotify" value="True" <% If blnReplyNotify = True Then Response.Write "checked" %> /> <% = strTxtNo %><input type="radio" name="replyNotify" value="False" <% If blnReplyNotify = False Then Response.Write "checked" %> />
</td>
</tr>
Thank you.