when I select some value in dropdownlist, it populates the below ListView
<asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource1">
<ItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%#Eval("column1") %>' /><br />
<asp:Button runat="server" id="Button1" text="details" PostBackUrl='<%#"~/abc/details.aspx?id="+Eval("ID1")%>' />
</ItemTemplate>
</asp:ListView>
<asp:SqlDataSource ID="DataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:RJPConnectionString %>"
SelectCommand="sp_GetEList" UpdateCommand="sp_GetEList"
FilterExpression="column2 Like '{0}%'" SelectCommandType="StoredProcedure">
<SelectParameters>
<asp:Con ...
Go to the complete details ...