skip to Main Content

Unusable elements inside the (list view ) asp.net

Why can't I use the (input) I put in my (list view) in the C # code field? <asp:ListView ID="ListV" runat="server"> <ItemTemplate runat="server"> <asp:Label ID="Label2" runat="server" Text="Label"></asp:Label> <tr class="text-center"> <td class="product-remove"></td> <td class="image-prod"> <div class=""> <asp:Image ID="Image1" CssClass=" img" ImageUrl='<%#…

VIEW QUESTION

OData filter by Date throws "The query specified in the URI is not valid. An identifier was expected at position 62" – Asp.net

I am using OData to query data from my SQL Db, I am trying to filter data using a Date value. See query below: http://localhost:4409/OrderMaintenance?$filter=DocType%20eq%205%20and%20DocState%20in%20(0,1,2,3,4,5,6,7)%20and%20InvDate%20eq%202022/02/21 Only the date is the problem in this query because when I remove the date…

VIEW QUESTION
Back To Top
Search