Question

<asp:Image ID="imgteacher" runat="server" Height="150" Width="248" ImageUrl="ShowImage.ashx?id="+<%#Eval("CourseID") %>/>

Please, correct my writing mistake . I think my problem is because of only this row, therefore I only copied this row.

Parser Error Message: The server tag is not well formed.
Was it helpful?

Solution

The reason for the error message is the data binding in the ImageUrl attribute. In order to make this work you need to exchange the double quotes by single ones and adjust the data binding code:

<asp:Image ID="imgteacher" runat="server" Height="150" Width="248" 
    ImageUrl='<%# "ShowImage.ashx?id="+ DataBinder.Eval(Container.DataItem, "CourseID") %>'/>

OTHER TIPS

Try This

Simple wadata binding in the ImageUrl attribute

<asp:Image ID="imgteacher" runat="client" Height="150" Width="248" ImageUrl="ShowImage.ashx?id="+<%#Eval("CourseID") %>/>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top