|
= "One"; dsUntyped.Tables["Master"].Rows.Add(dr); dr = dsUntyped.Tables["Master"].NewRow(); dr["MasterID"] = 2; dr["MasterValue"] = "Two"; dsUntyped.Tables["Master"].Rows.Add(dr); //为child表添加1行 dr = dsUntyped.Tables["Child"].NewRow(); dr["MasterLink"] = 1; dr["ChildID"] = 1; dr["ChildValue"] = "ChildOne"; dsUntyped.Tables["Child"].Rows.Add(dr); Session["ds"] = dsUntyped; Bind(); } catch(Exception ee) &上一页 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] ... 下一页 >> |
|
|
|
|
|
|
|