Code first mvc Get link Facebook X Pinterest Email Other Apps - February 10, 2017 https://www.codeproject.com/Articles/826571/Code-First-Approach-with-ASP-NET-MVC-Framework Get link Facebook X Pinterest Email Other Apps
How to get only File extension from path in c# - March 21, 2014 C# Code: string FilePath = "D:\\images\\1.png" ; string Extention = Path .GetExtension(FilePath); Read More »
How to send mail to another email id using C#.Net - January 08, 2014 C# Code: MailMessage Msg = new MailMessage (); string FromMail = "noreply@softtechsolving.com" ; string Password = "XXXXXXX" ; //”XXXXXX” is email id password Msg.From = new MailAddress (FromMail); // Recipient e-mail address.. string ToMail = txtEmail.Text; Msg.To.Add(ToMail); string MsgBody = "welcome to softtechsolving…" ; AlternateView htmlMsgView = AlternateView .CreateAlternateViewFromString(MsgBody, null , MediaTypeNames . Text .Html); Msg.AlternateViews.Add(htmlMsgView); Msg.Subject = "softtechsolving" ; ... Read More »
How to send mail to another email id through gmail provider using c#.net - January 08, 2014 C# Code: MailMessage Msg = new MailMessage (); // Sender e-mail address. string FromMail = "noreplysofttechsolving@gmail.com" ; string Password = "xxxxxx" ; //sender email password Msg.From = new MailAddress (FromMail); // Recipient e-mail address.. string ToMail = txtEmail.Text; Msg.To.Add(ToMail); string MsgBody = "Thank you!!!!" ; AlternateView htmlMsgView = AlternateView .Create... Read More »