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 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 »
What is OOPS? - April 03, 2019 Object Oriented Programming (OOP) is a programming structure where programs are organized around objects and data. Read More »