CType(DataGridItem.FindControl("TextBox1"), TextBox).Text 是这样的! 那从table中读去数据要这么写? Dim table1 As DataTable = New DataTable("shoppingbag") Dim dr As DataRow dr = table1.NewRow dr.Item("quantity") = CType(DGI.FindControl("TextBox1"), TextBox).Text这样怎么不对!