コード例 #1
0
ファイル: Dep_list.aspx.cs プロジェクト: hyori7/Hospital
 protected override void Fire(object sender, EventArgs e)
 {
     Data data = new Data();
     RoomBiz biz = new RoomBiz();
     Data result = biz.Deptlist(data);
     RoomList.DataSource = result.Source;
     RoomList.DataBind();
 }