コード例 #1
0
        private void displayMyBugs()
        {
            BugClass bc = new BugClass();

            bc.bugReporter = Session["loginID"].ToString();

            Repeater1.DataSource = bc.getAllBugsByBugReporter();
            Repeater1.DataBind();
        }