UserName :
Hello {{UserName}} Hello
<html>
<head> <title></title> <style type="text/css"> body { font-family: Arial; font-size: 10pt; } </style> </head> <body> <div ng-app=""> UserName : <input type="text" ng-model="UserName"> <hr /> Hello <span>{{UserName}}</span> <br /> Hello <span ng-bind="UserName"></span> </div> </body> </html> |