You should have a sitemap on your website. This helps crawlers learn about the structure of your site and makes every section of your website reachable. I would make one sitemap for your users and another XML sitemap for the crawlers. Make sure you submit the XML sitemap to google and yahoo using the webmaster tools.
With Microsoft.NET Framework 2.0 everything is asynchronous and we can send mail also asynchronously. This features is very useful when you send lots of bulk mails like offers , Discounts , Greetings . You don’t have to wait for response from mail server and you can do other task . By using SmtpClient . SendAsync Method (MailMessage, Object) you need to do System.Net.Mail has also added asynchronous support for sending email. To send asynchronously, you need need to Wire up a SendCompleted event Create the SendCompleted event Call SmtpClient.SendAsync smtpClient.send() will initiate the sending on the main/ui thread and would block. smtpClient.SendAsync() will pick a thread from the .NET Thread Pool and execute the method on that thread. So your main UI will not hang or block . Let's create a simple example to send mail. For sending mail asynchronously you need to create a event handler that will notify that mail success...
Comments
Post a Comment