The server tag is not well formed error
asp.net, c#
Solution
You could not use double quotes within double quotes so use combination of single and double `quotes`.
Change
<asp:HiddenField ID="HiddenField1" Value="<%#Eval("Path")%>" runat="server" />
To
<asp:HiddenField ID="HiddenField1" Value='<%#Eval("Path")%>' runat="server" />
Problem
I wrote this code. The code contains the expected runat="server" attribute, but it is giving me this error message: `error on hiddenfield` part. ``` <asp:Repeater ID="Repeater1" runat="server"> <ItemTemplate> <asp:HiddenField ID="HiddenField1" Value="<%#Eval("Path")%>" runat="server" /> <img alt="image" style="text-align: center" src="<%#Eval("Path")%>" /><asp:CheckBox ID="CheckBox1" runat="server" /> <br></br> </ItemTemplate> </asp:Repeater> ```