Here is what i would do
"
SelectCommand="SELECT * FROM [Customers]">
Then for the test.aspx page i would have a datasource like this
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:BlissConnectionString %>"
SelectCommand="SELECT * FROM [Customers] WHERE CustomerID = @ID">
<SelectParameters>
<asp:QueryStringParameter Name="ID" QueryStringField="ID" />
</SelectParameters>
</asp:SqlDataSource>
<br />
<asp:DetailsView ID="DetailsView1" runat="server" AutoGenerateRows="False"
DataKeyNames="CustomerID" DataSourceID="SqlDataSource1" Height="50px"
Width="125px">
<Fields>
<asp:BoundField DataField="CustomerID" HeaderText="CustomerID"
InsertVisible="False" ReadOnly="True" SortExpression="CustomerID" />
<asp:BoundField DataField="CustomerName" HeaderText="CustomerName"
SortExpression="CustomerName" />
<asp:BoundField DataField="CustomerAddress" HeaderText="CustomerAddress"
SortExpression="CustomerAddress" />
<asp:BoundField DataField="CustomerPhone" HeaderText="CustomerPhone"
SortExpression="CustomerPhone" />
<asp:BoundField DataField="CustomerEmail" HeaderText="CustomerEmail"
SortExpression="CustomerEmail" />
</Fields>
</asp:DetailsView>
Totally untested but hope this helps you.
Regards
Liam