Dear All,
I need to implement a small form to send an email to the user who adds his/her email address into the textbox and press send. All that needs to work async.
However, with the below form/code I am experiencing the following problems:
1 - the validator controls are not firing
2 - the email is not sent at all
3 - the body message that I want the user to receive is not sent as an html text and all tags are visible (I tried the code inside a simple panel and 2 above problems go away)
In my masterpage:
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:UpdatePanel ID="newsletterpanel" runat="server" UpdateMode="Conditional">
<ContentTemplate>
<asp:TextBox ID="newslettertxt" CssClass="txtbox" runat="server"></asp:TextBox>
<asp:LinkBu ...
Go to the complete details ...