hello

Im trying to pass data between formview2 and formview3

I used this code in formview3:

    ConnectionString="<%$ ConnectionStrings:DBprojectConnectionString %>"
  SelectCommand="SELECT [Password], [ComputerTag], [ComputerType], [Class], [FullName], [School], [PupilID], [UserName] FROM [Pupils] WHERE ([PupilID] = @PupilID)">
 
    PropertyName="SelectedValue" Type="Int32" />
 


PupilID should be the same in the 2 formviews, but nothing happen
I can see the data in the formview2, but formview3 is blank

what is wrong ?