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.
Était-ce utile?

La 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") %>'/>

Autres conseils

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") %>/>
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top