server control

  1. H

    Passing values between server controls

    I have created 2 server controls. The first creates a listbox and the intention is for the second control to pick up the value. My second control has: Dim myControl1 As New Control Get myControl1 = CType(FindControl("testListBox"), ListBox) 'myControl2 = myControl1.ID...
Back
Top