Dawson Klay Guinang
Dawson Klay Guinang

Reputation: 1

Server tag is not well-formed

It says that my server tag is not well-formed.

<asp:TextBox ID="TextBox1" runat="server" placeholder="Fullname"style="width:400px; height:25px; font-family:'Century Gothic'; -webkit-border-radius:5px; border-style:none; margin-left:10px;">
</asp:TextBox>

Upvotes: 0

Views: 77

Answers (1)

Yong Shun
Yong Shun

Reputation: 51135

You may try with following:

<asp:TextBox ID="TextBox1" runat="server" placeholder="Fullname" style="width:400px; height:25px; font-family:'Century Gothic'; -webkit-border-radius:5px; border-style:none; margin-left:10px;">
</asp:TextBox>

Saw that no space in between the ending double quote for placeholder and style.

Upvotes: 1

Related Questions