Compiler Error Message: CS0131: The left-hand side of an assignment must be a variable, property or indexer
<asp:ListView ID="lsvmain" runat="server"> <ItemTemplate> <div class="span8"> <h5> <asp:Image ID="uimg" runat="server" CssClass="img-polaroid" Width="44px" ImageUrl='<%# Eval("imgsrc") %>' /> <asp:Label ID="lblTitle" runat="server" Text='<%# Eval("Title") %>'></asp:Label> </h5> </div> <div class="span4"> <asp:Label ID="Label1" runat="server" Text='<%# Eval("StReply") = true ? "yes" : "no" %>'></asp:Label> </div> <hr /> </ItemTemplate> </asp:ListView>
<asp:label id="Label1" runat="server" text="<%# (Eval("StReply").ToString() == "True") ? " <i class=icon-comments></i> پاسخ داده شده" : " <i class=icon-comment-alt></i> پاسخ داده نشده" %>" xmlns:asp="#unknown"></asp:label>
<asp:label id="Label1" runat="server" text="<%# Eval("StReply") == true ? "yes" : "no" %>" xmlns:asp="#unknown"> </asp:label>
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)