Ok.. this is the Tag on the aspx
"<asp:dropdownlist id=DropDownList1 runat="server" Font-Names="Tahoma" DataValueField="Category" DataTextField="Category" DataSource="<%# DataSet11 %>" Height="15px" BackColor="#C4CEFF" AutoPostBack="True" Width="159px">
</asp:dropdownlist>"
Apart from that there is the code behind..
"
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
If IsPostBack Then
Me.OleDbDataAdapter1.SelectCommand.CommandText += " WHERE [Story Category]= '" & Me.DropDownList1.SelectedItem.Value & "' "
Me.legweek.Text = "Chosen Category : " & Me.DropDownList1.SelectedItem.Value
Me.legcount.Text = "Category Total"
Else
Me.OleDbDataAdapter1.SelectCommand.CommandText += " WHERE [Date Created]>= #" & Date.Today.AddDays(-7).ToString("MM/dd/yyyy"

& "# And [Date Created]<=#" & Date.Today.ToString("MM/dd/yyyy"

& "# ORDER BY Tbl_Press.[Date Created];"
Me.legweek.Text = "Latest News"
Me.legcount.Text = "Total News Items This Week"
End If
Me.OleDbDataAdapter1.Fill(DataSet51)
Me.OleDbDataAdapter2.Fill(DataSet11)
Me.OleDbDataAdapter3.Fill(DataSet21)
Me.repeater1.DataSource = DataSet51.Tables("webQuery"

.DefaultView
DataBind()
If IsPostBack Then
Me.legcount2.Text = Me.DataSet51.webQuery.Rows.Count
Else
Me.legcount2.Text = Me.DataSet51.webQuery.Rows.Count
End If
End Sub
End Class
"
All of the other items work fine in the dropdownlist. This is the only problem i have with the page.
Thx again _______________
Stretchy [Pipe]