The event will be more like a workshop. Try to bring your laptop.
Register
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/angular.js"></script>
</head>
<body>
<div ng-app="">
Name <input type="text" ng-model="Name"/>
<br/>
Hello {{Name}}
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/angular.js"></script>
</head>
<body>
<div ng-app="" ng-init="names=['Shalvin P D','Ajay','Rajeev']">
<ul>
<li ng-repeat="x in names">
{{ x }}
</li>
</ul>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/angular.js"></script>
</head>
<body>
<div ng-app="" ng-init="names=[
{name:'Shalvin',location:'Kochi'},
{name:'Rajeev',location:'Kollam'},
{name:'Ajesh',location:'Alappey'}]">
<ul>
<li ng-repeat="x in names">
{{ x.name + ' - ' + x.location }}
</li>
</ul>
</div>
</body>
</html>
<!doctype html>
<html ng-app="Contacts">
<head>
<title>Contact Management</title>
<script src="Scripts/angular.js"></script>
<script>
var parking = angular.module("Contacts", []);
parking.controller("HomeCtrl", function ($scope) {
$scope.Contacts = [
{Name: 'Shalvin'},
{Name: 'Sooraj'},
{Name: 'Mahesh'}
];
});
</script>
</head>
<body ng-controller="HomeCtrl">
<h3>Modules and Controllers - Shalvin</h3>
<table>
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="n in Contacts">
<td>{{n.Name}}</td>
</tr>
</tbody>
</table>
</body>
</html>
| Jose Vamattathil currently working as Technical Manager at Orion India Systems Pvt Ltd. Total 18+ years in the IT industry. 12 Years work experience in Corporate America including fortune 500 companies. Managed multiple projects in Financial, Auditing and Healthcare industry | ||
| Abhilash Ashok is a passionate Microsoft Technology Enthusiast working as User Experience Lead at Identitymine, Kochi. He has 8 years of rich experience in Microsoft Technologies. His area of expertise includes Windows Phone, Windows Store, Kinect for Windows, Xamarin, WPF, ASP.NET and legacy technologies like Windows Forms. He blogs at http://cametoofar.com/. | ||
| Anuraj works as a Tech Lead in Orion India Systems. He works in Data Analytics and Architecture. He blogs athttp://www.dotnetthoughts.net/ | ||
| Shalvin is working as Independent .NET Corporate Trainer and Consultant with more than 15 years of experience is Microsoft Technolgies. Specializing in ASP .NET, WPF, Silverlight, Sharepoint, Entity Framework, etc. Actively associates with Microsoft User Group movement in Kerala from its very inception. He is a frequent speaker, blogger and a .Net enthusiast. He blogs at http://shalvinpd.blogspot.in/ | ||
private SPListItemCollection GetEmployee()
{
SPSite site = new SPSite("http://toshiba-pc");
SPWeb web = site.RootWeb;
SPList lis = web.Lists["Employee"];
SPQuery q = new SPQuery();
q.Query = String.Format("<Where><Contains><FieldRef Name='Title'/><Value Type='Text'>{0}</Value></Contains></Where>", txtEmployee.Text);
q.ViewFields = "<FieldRef Name='Employee_x0020_Location'/><FieldRef Name='Years_x0020_Of_x0020_Experience'/>";
SPListItemCollection lic = lis.GetItems(q);
return lic;
}
protected void btnSearch_Click(object sender, EventArgs e)
{
SPListItemCollection lic = GetEmployee();
SPListItem li = lic[0];
txtLocation.Text = li["Employee_x0020_Location"].ToString();
int? intYears = Int32.Parse(li["Years_x0020_Of_x0020_Experience"].ToString());
txtYearsOfExp.Text = intYears.ToString();
}
protected void btnEdit_Click(object sender, EventArgs e)
{
SPListItemCollection lic = GetEmployee();
SPListItem li = lic[0];
li["Employee_x0020_Location"] = txtLocation.Text;
li["Years_x0020_Of_x0020_Experience"] = txtYearsOfExp.Text;
li.Update();
}