without where command the result appared like this repeat all record every time after product category

NEW LAPTOP Acer Dell HP Kingston Sony USB FLASH DRIVE Acer Dell HP Kingston Sony USED LAPTOP Acer Dell HP Kingston Sony

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server"></head>
<body>    
<form id="form1" runat="server">
<div>
    <asp:Repeater ID="Repeater1" runat="server" DataSourceID="AccessDataSource1">
    <ItemTemplate>
    <li><asp:Label ID="Label1" runat="server" Text='<%# Bind("PCName") %>' /></li>
<asp:AccessDataSource ID="AccessDataSource2" runat="server" DataFile="~/Database/PDetail.mdb" 
SelectCommand="SELECT DISTINCT [PBName] FROM [PDETAIL] WHERE PCName= <%# Eval('PCName')%> " />
<asp:Repeater ID="Repeater2" runat="server" DataSourceID="AccessDataSource2">
    <ItemTemplate> <li> <%# Eval("PBName")%> </li> </ItemTemplate>
</asp:Repeater>
    </ItemTemplate>
    </asp:Repeater>

<asp:AccessDataSource ID="AccessDataSource1" runat="server"  DataFile="~/Database/PDetail.mdb" 
    SelectCommand="SELECT DISTINCT [PCName] FROM [PDETAIL]" />
</div>
</form>

link|improve this question
' ' IS WORK BUT AFTER THAT THIS ERROR OCCURS – user1228468 Feb 23 at 15:36
feedback

1 Answer

<ItemTemplate>

<asp:AccessDataSource ID="AccessDataSource2" 
      runat="server" DataFile="~/Database/PDetail.mdb" 
      SelectCommand='<%# "SELECT DISTINCT [PBName] FROM [PDETAIL] WHERE PCName= " +  (char)39 + Eval("PCName") + (char)39 %>'  />

</ItemTemplate>


 (char)39 is for '
link|improve this answer
already 2 Repeater in code but error is given above i think that the result of <%# Eval("PCName")%> store in string var and var used in sql query and have some initial value – user1228468 Feb 23 at 15:54
can you try this? – Adrian Iftode Feb 23 at 16:19
I hope you don't have any apostrophe in your names...However I think you need to try another approach. On the ItemDataBound event of the parent repeater call item.FindControl("AccessDataSource2"), then convert it to the proper control and the add to the SelectParameters the value found in item.Data. This way you won't have errors because of unwanted literals in the names and you creating secure statements which don't suffer from SQL injection. – Adrian Iftode Feb 23 at 16:25
tell me how can i define string var and store value in it – user1228468 Feb 23 at 16:40
stackoverflow.com/questions/3470068/… see this, is near your situation – Adrian Iftode Feb 23 at 16:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.