Posts

Showing posts with the label Web Application

How to use DataPager control with Data List View in asp.net c#

Image
UI:

How to send mail to another email id with attachment file

C# Code: Attachment at = new Attachment (Server.MapPath(MemberPic)); //for attached file.... 'MemberPic' is file path , is string format…                     MailMessage Msg = new MailMessage ();                     string FromMail = "support@softtechsolving.com" ;                     string Password = "XXXXXX" ;  // "XXXXXX" is sender password…                     Msg.From = new MailAddress (FromMail);                     // Recipient e-mail address..       ...