user3105746
user3105746

Reputation: 1

Parser Error Message: The server tag is not well formed. how do i fix it?

this line is getting the error message how do i fix it?

<asp:TextBox ID="RefCode3" runat="server" Width="400px" Font-Size="10px" ForeColor="#9e9e9e" BackColor="White" BorderWidth="1px" BorderColor="#D2D2D2"TextMode="MultiLine" Height="40px"></asp:TextBox>

Upvotes: 0

Views: 1058

Answers (1)

MusicLovingIndianGirl
MusicLovingIndianGirl

Reputation: 5947

Give a space after BorderColor:

<asp:TextBox ID="RefCode3" runat="server" Width="400px" Font-Size="10px" ForeColor="#9e9e9e" BackColor="White" BorderWidth="1px" BorderColor="#D2D2D2" TextMode="MultiLine" Height="40px"></asp:TextBox>

Upvotes: 1

Related Questions