Hi SUJAYS,
This is not a issue actually rather it is just a warning, you can just ignore it.
You can easily run our application and get result without any Error.
This Warning is showing because HTML5 is not defined in this page.
To resolve this warning, you need to add data- before all ng tags.
Example:
<div data-ng-app="MyApp">
<asp:TextBox ID="txtempname" runat="server" data-ng-model="Name"></asp:TextBox>
<span data-ng-show="!Name" style="color: Red;">Name required!</span>
</div>