예제 #1
0
    protected override void OnInit(EventArgs e)
    {
        DropDownList_DisplayType.DataSource = PersistanceLayer.GetDisplays();
        DropDownList_DisplayType.DataBind();

        DDL_DeviceSelect.DataSource = PersistanceLayer.GetDevices();
        DDL_DeviceSelect.DataBind();
        base.OnInit(e);
    }
예제 #2
0
 protected override void OnInit(EventArgs e)
 {
     DDL_DeviceSelect.DataSource = PersistanceLayer.GetDevices();
     DDL_DeviceSelect.DataBind();
     base.OnInit(e);
 }