How to get Filename without extension from path in c# Get link Facebook X Pinterest Email Other Apps - March 21, 2014 C # Code: string FilePath ="D:\\images\\1.png"; string Filename = Path.GetFileNameWithoutExtension(FilePath); 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 »