What do you mean by "that duplicates what is already on the page"? Do you mean the same data (jn a control) is displayed twice?
If that's the case, take a look at your code in the Page_Load event. Maybe you're adding the data twice: once on the initial Load, and one on Postback.
Usually, you'll see something like this in the Page_Load event:
If Not Page.IsPostBack Then
' Bind Data
End If
Most controls maintain their state between postbacks, so there is no need to bind them again.
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.
|