看你怎么存储了,不过建议你以xml的方式存储,至于结构,自己定义吧

解决方案 »

  1.   

    用这种方式吧,简单,好理解,
         SqlConnection con = new SqlConnection("Data Source=.;Initial Catalog=table;Integrated Security=True");
                con.Open();
                SqlCommand cmd = new SqlCommand(string.Format("select Count(*) form table where 编号= '{0}'", textBox1.Text), con);
                if ((int)cmd.ExecuteScalar() > 0)
                {
                    MessageBox.Show("数据已经存在", "提示");
                }
                else
                {
                   string sql = "insert into table(编号,名字,部门,工作完成度,.....) values('" + textBox1.Text +"','"+textBox2.Text+"','"+textBox2.Text+"','"+RadioButton1.text+"','"+......."')";                cmd.CommandText = sql;
                    cmd.ExecuteNonQuery();
                    MessageBox.Show("成功添加");
                }
      

  2.   

    但是我的RadioButton是五个选择一个  不是直接输出来啊 = =  原来我的表述能力还是比较有问题, 就你知道我在说什么
      

  3.   

    那啥  我的XML真心没学好  不会
      

  4.   

    xml或者json都比较理想,网上找对应的序列化类Json的话可以使用Json.Net或者.net自带的
    哪有什么不会的,谁不是需要什么学习什么