Do you know what i'm doing wrong?
Thanks
private void button10_Click(object sender, EventArgs e)
        {
            String[] lines = textBox58.Text.Split('\n');
            
 
            foreach (String l in lines)
            {
                MessageBox.Show("Customer " + l);
 
               EbillzDataContext InNotes = new EbillzDataContext();
                Note Notes = new Note();
                Notes.CustomerCode = l;
                Notes.ActionUser = "VT2";
                Notes.Complete = true;
                Notes.Details = "CustomerCode: " + l + Environment.NewLine + "Awaiting ISP Details." + Environment.NewLine; // +
                Notes.NoteDate = DateTime.Now;
                Notes.Subject = "Router Info";
                Notes.User = System.Environment.UserName; ;
                Notes.NoteType = "Awaiting ISP";
                Notes.PercentComplete = 100;
                Notes.Deadline = DateTime.Now.AddDays(1);
                InNotes.Notes.InsertOnSubmit(Notes);
                InNotes.SubmitChanges();
                MessageBox.Show("Note has been added for customer " + l);