come mai con questa query:
codice:
String strSelect = "INSERT INTO Commenti (Post, Nome, Email,  Commento, Data) Values (" + 
			Request.QueryString["PostID"] + ", '" + 
			QueryString(Name.Text) + "', '" +
			QueryString(Email.Text) + "', '" +
			QueryString(Comment.Text) + "', Format('" + 
			String.Format("{0:dd/MM/yyyy HH.mm.ss}", DateTime.Now) +  "', 'dd/mm/yyyy hh:mm'))";
non mi prende le lettere acceentate? ovvero non vengono proprio inserite nel db...
il responseencoding (che credo sia l'unico che centri) è questo:
ResponseEncoding="iso-8859-1"

boh
ciao