V tom asi bude ten problém, nemám nijak ošetřeno ukládání HTML z editoru. Jsem začátečník takže v kód bude asi blbě, tak prosím o shovívavost. Zde je kód:
string conn = ConfigurationManager.ConnectionStrings["Můj ConnectionString"].ConnectionString;
SqlConnection mySqlConnection = new SqlConnection(conn);
SqlCommand mySqlCommand = new SqlCommand("INSERT INTO [Clanky]" + "([Predmet], [Autor], [Text])" + "VALUES (@Predmet, @Autor, @Text)", mySqlConnection);
mySqlCommand.Parameters.Add("@predmet", SqlDbType.NVarChar, 100).Value = TextBox1.Text;
mySqlCommand.Parameters.Add("@autor", SqlDbType.NVarChar).Value = TextBox2.Text;
mySqlCommand.Parameters.Add("@text", SqlDbType.NVarChar).Value = Editor1.Content;
mySqlConnection.Open();
mySqlCommand.ExecuteNonQuery();
mySqlConnection.Close();
|