Click here to Skip to main content
15,908,444 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have to create dynamic div on aspx page.
the code occur error

The server tag is not well formed.

My Code :
ASP.NET
<ul id="ulVersions<%# Eval("question_Id")%>" runat="server">
Posted

1 solution

It would give you not well-formed HTML. You are missing closing "ul" tag.

—SA
 
Share this answer
 
Comments
Member 8772791 9-Dec-15 3:05am    
<ul id="ulVersions<%# Eval("question_Id")%>" runat="server">
<li>Older Versions :</li>
</ul>

still not working
Sergey Alexandrovich Kryukov 9-Dec-15 9:57am    
Then something else is a problem. :-)
—SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900