显示标签中的通用列表项

时间:2013-12-12 19:01:19

标签: c# sql

我只是想在设计中的标签中显示通用列表中的学生详细信息。

我在x is not in the current context

的foreach循环中收到错误
namespace gentask
{
    public partial class WebForm2 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            SqlConnection conn = new SqlConnection();
            conn.ConnectionString = @"Data Source=Sadiq;Initial Catalog=rafi;Integrated Security=True";
            conn.Open();
            SqlCommand cmd = new SqlCommand();
            cmd.Connection = conn;
            cmd.CommandText = "select  * from student";
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);
        }
    }
    public class student
    {
        student std;
        List<student> stud = new List<student>();
        public void load()
        {
            foreach (DataRow dr in x)
            {
                std = new stud();
                std.id = x[0].Tostring();
                std.name = x[1].Tostring();
                std.age = x[2].Tostring();
                std.school = x[3].Tostring();
                std.clas = x[4].Tostring();
                std.marks = x[5].Tostring();
                std.grade = x[6].Tostring();
                stud.Add(std);
            }
        }
        public void show()
        {
            foreach (student std in stud)
            {
                std.id = label.text;
                std.name = label1.text;
                std.age = label2.text;
                std.school = label3.text;
                std.clas = label4.text;
                std.marks = label5.text;
                std.grade = Label6.Text;
            }
        }
    }
}

1 个答案:

答案 0 :(得分:3)

错误消息似乎非常清楚 - 您正在尝试迭代x,而foreach (DataRow dr in x) // what is x? 未在方法可以访问的任何位置定义:

Student.Show()

你也有这些问题:

  • 您正尝试引用stud中表单中的所有文本框。
  • 您正在尝试创建std = new stud(); 的实例,该实例未在我能看到的任何地方定义:

    stud
  • 您正尝试将“List”添加到Student stud(我假设Student未从{{1}}继承