Home » Archive

Articles tagged with: C#

C# »

[27 Jan 2009 | No Comment | 31 views]

convert string to datetime
string datestring = “18 March 2008″;
DateTime parseddate = Convert.ToDateTime(datestring);
Response.Write(parseddate);
convert datetime to string

C# »

[17 Jan 2009 | No Comment | 9 views]

Change page title and meta tags dynamically/programmatically in C#.net
to change page title
Page.Title = “New Page Title”;

ASP.NET »

[5 Oct 2007 | No Comment | 51 views]

Problem

There is a .aspx page with some textbox and a submit button.
User enters text in the textbox and clicks the submit button.