单项选择题 下列关于泛型集合Dictionary<String,Person>list=new Dictionary<String,Person>()的操作,正确的是()
单项选择题 以下是某程序员在一个Web窗体中编写的部分C#代码,已知GetJobDs是一个返回一个数据集的方法,当某个用户第一次访问该页面时,下列说法正确的是() private void Page_Load(object sender,System.EventArgs e){if(!this.IsPostBack){//1 DataSet ds=this.GetJobDs();//2 this.GridView1.DataSource=ds.Tables[0];//3}}
单项选择题 如果需要代码只在页面第一次加载时执行,则括号处理应填写的代码是?() protected void Page_Load(object sender,EventArgse){if(){//代码}}