Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > General Discussions > Windows Service to send email
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

Not answered Windows Service to send email

Feed from this thread
  • Vitaly avatar

    Posted on May 24, 2011 (permalink)

    Good afternoon,
    I need to create a Windows Service to notify users once a month via emai(data will come from store procedurel.
    Since I am new to .Net programming could you please help me out with it.

    Thanks so much.

  • Posted on May 25, 2011 (permalink)

    Hey Vitaly,

    After a quick google search I found these articles that can be helpful to you:
    http://www.4guysfromrolla.com/articles/072606-1.aspx
    http://forums.asp.net/t/1362017.aspx

    Examine them and develop your code according to the guidelines there.

    Kiara

  • Vitaly avatar

    Posted on May 25, 2011 (permalink)

    Thanks so much Kiara for your responding.I have another question:
    I have Raddate Picker control on my form with calendar popup:

    <

     

    telerik:RadDatePicker ID="RadDatePicker2" runat="server" Width="95px" Height="12" Font-Size="X-Small" MinDate="01/01/1900" MaxDate="12/31/2100" Skin="Vista">

     

     

    <DateInput Font-Bold="true" TabIndex="5" DateFormat="MM/dd/yyyy" runat="server" DisabledStyle-Font-Bold="true" DisabledStyle-BackColor="#EFEFEF" MaxLength="10"></DateInput>

     

     

    <DatePopupButton ImageUrl="../../Image/icon-calendar.gif" HoverImageUrl="../../Image/icon-calendar.gif" />

     

     

    </telerik:RadDatePicker>

     


    And next to that day I have the other one:

    <

     

    telerik:RadDatePicker ID="RadDatePicker3" runat="server" Font-Bold="true" Width="95px" Height="12" Font-Size="x-Small" Skin="Vista" >

     

     

    <DateInput Font-Bold="true" TabIndex="6" DateFormat="MM/dd/yyyy" runat="server" DisabledStyle-Font-Bold="true" DisabledStyle-BackColor="#EFEFEF" MaxLength="10"></DateInput>

     

     

    <DatePopupButton ImageUrl="../../Image/icon-calendar.gif" HoverImageUrl="../../Image/icon-calendar.gif" />

     

     

    </telerik:RadDatePicker>

     

    When I click on calendar popup and choose a date and use a tab to go to next texbox somehow cursor jump into very first field which is on top of this form instead of going to next textbox field.
    Its only happend when I use calendar popup as a selecting date.

    Thanks so much for your help.

  • Genti Genti admin's avatar

    Posted on May 28, 2011 (permalink)

    Hello Vitaly,

    You can introduce a client side event that fires up when a date is selected in the calendar pop up. This function would set focus on the input text box associated with the date picker control so that when the tab key is pressed the cursor would move from there.
    For that add a ClientSideEvent tag to the definitions of the RadDatePickers in the following way
    <ClientEvents OnDateSelected="DateSelected"/>

    Then you would need to define the handler:
    <telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">
            <script type="text/javascript">
                function DateSelected(sender, eventArgs) {
                    sender.get_textBox().focus();
                }
            </script>
        </telerik:RadScriptBlock>

    Hope this helps.

    Best regards,
    Genti
    the Telerik team

    Consider using RadControls for ASP.NET AJAX (built on top of the ASP.NET AJAX framework) as a replacement for the Telerik ASP.NET Classic controls, See the product support lifecycle here.

  • Vitaly avatar

    Posted on Jun 8, 2011 (permalink)

    Thanks so much.Its working fine.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > General Discussions > Windows Service to send email