Hi All,
I am trying to implement an easy but not easy newsletter application.
In am stuck at the following point:
<asp:Panel ID="enteremail" runat="server">
<asp:TextBox ID="TextBoxNewsletter" runat="server"></asp:TextBox>
<asp:Button ID="addEmail" runat="server" Text="Sign up" />
</asp:Panel>
<asp:Panel ID="thankspanel" runat="server">
<asp:Label ID="lbloutcome" runat="server" Text="Thank you" />
</asp:Panel>
So once the user add it's user name, I want to show them asyncronously a thank you message.
In code behind I have the following:
Imports System.Collections.Generic
Imports System.Linq
Imports System.Web
Imports System.Web.UI
Imports System.Web.UI.WebControls
Im ...
Go to the complete details ...