Articles in the C# Category
C# »
Here is C# code to convert date string to datetime and datetime to date string.
Convert date string to datetime
1 2 3 | string datestring = "18 March 2008"; DateTime parseddate = Convert.ToDateTime(datestring); Response.Write(parseddate); |
C# »
Here is the code to change page title and meta tags dynamically/programmatically in C# .Net.
Change Page Title
1 | Page.Title = "New Page Title"; |
Mukesh Chapagain is a graduate of Kathmandu University (Dhulikhel, Nepal) from where he holds a Masters degree in Computer Engineering. Mukesh is a passionate web developer who has keen interest in open source technologies, programming & blogging.