A.cs
B.aspx
C.form
D.xml
您可能感興趣的試卷
你可能感興趣的試題
A.Connection
B.Command
C.DataReader
D.Data
A.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds);
B.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds);
C.SqlCommand cmd =new ("SELECT *FROM MyTable",con);SqlDataAdapter da =SqlDataAdapter(cmd);DataSet ds =new DataSet();da.Fill(ds,"MyTable");
D.SqlDataAdapter da =SqlDataAdapter("SELECT *FROM MyTable",con);DataSet ds =new DataSet();da.Fill(ds.Tables["MyTable"]);
A.ShowMenu
B.MenuStrip
C.ContextMenuStrip
D.Menu
A.Text
B.Caption
C.Name
D.Font
A.DrawGrid
B.Enabled
C.ShowInTasker
D.IsMdiContainer
最新試題
在WinForms窗體中,單選按鈕(RadioButton)控件的()屬性用于獲取或設(shè)置控件是否已選中。
在C#中,使用()關(guān)鍵字來導(dǎo)入命名空間。
在c#窗體應(yīng)用程序中,Panel、GroupBox、TabControl等分組控件,有時候也被稱之為()
在WinForm窗體中,列表框(LisBox)控件的()屬性用于設(shè)置一個值,該值決定ListBox 是否支持選擇多項。
在ADO.NET中,下列能夠提供與SQL Server數(shù)據(jù)庫連接的對象是()
在WinForm窗體中,ComboBox有三種下拉樣式,其中不包括()
在C#語言開發(fā)的WinForms程序中,當(dāng)消息框的返回值時,可以使用()類型的變量直接接收。
下列()對象可用于DataSet中填充數(shù)據(jù)以及將修改后的數(shù)據(jù)更新至數(shù)據(jù)庫。
在C#WinForm程序中,以下不能綁定DataGridView數(shù)據(jù)源的是()
下列關(guān)于ADO.NET操作數(shù)據(jù)庫的原理,說法有誤的是()