skip to Main Content

Displaying image from database using repeater without HttpHandler in ASP.NET – Html

Is it possible to display the image? The CategoryName was able to display fine, but the CategoryImage displayed as array of byte <asp:Repeater ID="Repeater1" runat="server"> <ItemTemplate> <%#Eval("CategoryImage")%> <%#Eval("CategoryName")%> </ItemTemplate> </asp:Repeater> SqlDataReader dtrImage = cmdSelect.ExecuteReader(); Repeater1.DataSource = dtrImage; Repeater1.DataBind(); Output: Animal…

VIEW QUESTION

What is the best way to structure a todo list database with Firestore to create a reference between projects and tasks? – Flutter

I’m currently building a todo application with Flutter. Currently my structure looks like this: users/{userid}/projects/{projectid}/tasks/(all the tasks) (1) But I've also come up with the following idea. (2) users/{userid}/projects/{projectid} users/{userid}/tasks/{taskid} // All tasks hold a reference to the projectid Is…

VIEW QUESTION
Back To Top
Search