Hello guys,

I wonder if some of you can help me out with this.

Im working on an application in VWD 2010 with C#. I wonder how can I save like 8 multiline textboxes into a Database. Where every single line of this textboxes is a new row in the DB.

Thanks in advance,

You could just split the values of the text box.

Something like this:

    string[] lines = Regex.Split(textValue, @"\n\r");

    foreach (string line in lines)
    {
        // Do what you want
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.