ĐÀO TẠO DOANH NGHIỆP : SỞ KHOA HỌC CÔNG NGHỆ TỈNH ĐỒNG NAI

ENTERPRISE TRAINING: DONG NAI DEPARTMENT OF SCIENCE AND TECHNOLOGY.

123

Monday, August 24, 2015

What is a SharePoint Administrator?

The role of the SharePoint Administrator is often a topic that comes up when beginning to plan out a SharePoint implementation, as it should. The various roles and responsibilities should be clearly defined upfront, but I often receive the initial feedback from customers that we should be able to just tell them what those responsibilities are. The problem with that philosophy is that the organization, management, goals, and skill sets of every organization are not the same. The role of a SharePoint Administrator will vary depending upon your...

Thursday, August 20, 2015

Bulk Insert/Update/Delete Items from SharePoint List/Library

Bulk Insert/Update/Delete Items from SharePoint List/Library   We have the sharepoint list like as below Create console project to run the code    Code here  Before run => remember change Target framework to 3.5 (i using visual 2010 and sharepoint 2010)  Run application  The result here but have problem with "Throttling" the next topic i will guide to you how to disable it in special...

How to update only one field using Entity Framework

 How to update only one field using Entity Framework   var tableEmployee = new T_Employees() { EmployeeID = item.EmployeeID , IsDisplayRequired = item.IsDisRequired };                 using (var db = new DBEntitiesContext())                 {                     db.Configuration.ValidateOnSaveEnabled...

MVC 5 Insert Update Delete CRUD Functionality using EF

MVC 5 Insert Update Delete CRUD Functionality using EF Download project at here: http://www.mediafire.com/download/2s4mwu2vcunlx9d/MVC5.7z 1. Continue with previous article at link: http://www.microsofttechnology.net/2015/08/insert-update-and-delete-data-in-mvc5.html.  Create new class in Models folder call is EmployeesModel at image below 2. Writing code like below 3. Create new controller (Empty) 4. Name is EmployeesController 5....

Tuesday, August 18, 2015

Insert, Update and Delete Data in MVC5 Using Entity Framework

Insert, Update and Delete Data in MVC5 Using Entity Framework Create new database and table like below Continue with article: http://www.microsofttechnology.net/2015/08/how-to-create-mvc-5.html, open that project - right click to models folder >> Add new item >> from left panel choose Data >> Ado.NET Entity Data Model Click new connection ... button >> choose data source is Microsoft SQL Server >> Continue Server...

Monday, August 17, 2015

How to create MVC 5

Dear my friends, Today i write the new technology not sharepoint, it is MVC. In the future i will integrate MVC and Sharepoint App. In the same way, very basic to show all of you is how to create MVC project: Install visual studio 2013 => open it and create new project => choose Web Template => ASP.NET Web Application Choose MVC and change Authentication to no Authentication Default MVC project like at below Click F5 to run project: Done. I...