AngularJs is a Framework of the Jscrit to work in a better way . A basic knowledge of HTML,cssand JScript is requiredbefore starting angular js. ng-directives are uses to extentHTML content. and we need to download the AngualrJs CLICK HERE After adding the AngularJs to your web page it will automatically gets loaded to your web page . 'ng-app' directive is added to div which tells the js that div is the owner of the AngularJs applicaion <div ng-app=""> ------ ------ </div> "ng-model" it binds the inserted values with a variable name <p>The name of the User is <input type="text" ng-model="first_name"/></p> here the firstname is the variable is which the value is being entered now we will bind this value to any other component . which is called as two way binding this can be get by 'ng-bind' <p>The name of the User is <input type="text" ng-model="firs...
Popular posts from this blog
How to post data in MVC using form collection for Beginners.
Here we can simply put the data into the form tag and give each component an name .We are creating a login form using the MVC Architecture. <form method="post" action="Name_of_the_function> <input type="text" name=username id=username> <input type="password" name =pass id=pass> <input id=submit type="submit"> on controller [httppost] public ActionResult Name_of_the_function(formcollection form) { string str=form["username"]; string str1= form["pass"]; }
SharePoint Basics?
SharePoint As it is clear from its name SharePoint is tool provided by Microsoft to create CMS(Content Management System) , RMS(Report Management System) and DMS (Document Management System). It is server based tool used to create Intranet or Internet Web based solution . This is server based tool . It is tool to create fast and easy enterprise solution for creating Web based intranet portal.
Comments
Post a Comment