have a panel with Display=none
Have a button in a listview control that when selected, the vb code on postback sets panel display=block
on the panel there's a cancel button that calls javascript function to set panel display=none
All works fine to this point.
Now, am using paging controlls with listview and when I click Next page proper data appears but also my panel appears as well.
There is no code that I can see that is making panel visible when paging.
Any Ideas as to whats happening??
Lee
here's some code snips
This code causes CallPanel to be populated and displayed
Private Sub ListView1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
NameLabel.Text = ListView1.DataKeys(ListView1.SelectedIndex).Values("Name").ToString()
CallCellNum.Text = ListView1.DataKeys(ListView1.SelectedInde ...
Go to the complete details ...