当前位置:编程学习 > C#/ASP.NET >>

将asp.net网页中textbox里面的文本导入数据库中的字段

请问如何将网页中textbox里面的值导入到MSSQL数据库中的字段

textbox是多行文本框,里面内容格式为:
123123132 312313
312313123 312313
412414144 414124

需要分别将空格前的数据导到A字段,空格后的数据导入B字段,用的是vb.net,请问该如何操作啊! --------------------编程问答-------------------- 你没技术分,我不告诉你 --------------------编程问答-------------------- 我用的是C#想来VB.net也应该差不多。


 string text = textBox1.Text;
                string[] lines = text.Split(new string[]{System.Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries);
                foreach (string line in lines)
                {
                    string[] words = line.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
                    string A = words[0];
                    string B = string.Empty;
                    if (words.Length > 1)
                    {
                        B = words[1];
                    }

                    //update database使用这样的sql 语句
                    //Insert Into 表名 (A ,B) Values (@A, @B) 
                }
--------------------编程问答-------------------- 啊 2L的对 --------------------编程问答-------------------- up!!1 --------------------编程问答-------------------- 谁解释一下2楼的代码?
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,