Index. Bower, 133, 352 bower.json file, 376 Bundling files, 157

Size: px
Start display at page:

Download "Index. Bower, 133, 352 bower.json file, 376 Bundling files, 157"

Transcription

1 Index A Action results. See Controllers Actions. See Controllers Application model, 986 action constraints, 1000 Areas. See Routing Arrow functions. See Lambda expressions ASP.NET Core MVC (see Model View Controller (MVC)) Identity (see Identity) middleware, 391 Asynchronous methods, 99 async keyword, 101 Attribute routing. See Routing Authentication. See Identity Authorization. See Identity Authorize attribute. See Identity await keyword, 101 B Bower, 133, 352 bower.json file, 376 Bundling files, 157 C C# features anonymous types, 96 asynchronous methods, 99 extension methods, 85 getting member names, 102 initializers, 80 lambda expressions, 90 null conditional operator, 73 pattern matching, 83 properties, automatically implemented, 76 string interpolation, 79 type inference, 96 Client-side validation. See Model validation Configuration. See Projects Connection strings, 211 Controllers, 507 action method parameters, 520 action results, 524 base class, 514 context data, 516 folder, 62 naming conventions, 64 POCO controllers, 512 purpose in MVC pattern, 54 responses, 522 errors, 547 files, 545 HTML, 526 HTTP codes, 547 JSON, 543 redirections, 535 View method, 527 RESTful controllers, 632 content formatting, 645 content negotiation, 647 defining routes, 636 dependencies, 636 HTTP method attributes, 637 JSON, 639 Route attribute, 636 XML, 648 temp data, 541 unit testing, 526 View method, 527 Conventions, 63 controller conventions, 64 layouts, 65 over configuration, 63 view conventions, 64 D Data model. See Model Data validation. See Model validation Adam Freeman 2017 A. Freeman, Pro ASP.NET Core MVC 2,

2 Dependency injection, 551 action injection, 581 closely coupled components, 557 concrete types, 570 dependency chains, 568 lifecycles, 573 scoped, 578 singleton, 580 transient, 574 loosely coupled components, 556 manually accessing services, 582 property injection, 582 service provider, 564 SportsStore, 202, 271 Deployment, 334 connection strings, 335 preparing Azure, 335 Domain data. See Model E Entity Framework Core connection string, 887 creating an Identity database, 323 deleting data from the database, 319 migrations, 214, 296, 340 schema changes, 284 scope validation, 213 SportsStore, 209 updating the database, 308 Extension methods, 85, 90 F Filters, 585 action filters, 597 authorization filters, 594 context data, 593 dependency injection, 610 exception filters, 607 filter types and interfaces, 592 global filters, 618 hybrid action/result filters, 605 order of execution, 620 RequireHttps attribute, 591 result filters, 601 Font Awesome, 276 Form data, 32 G Git, 351 H Hosting environment, 402 HTML Helpers. See Tag helpers I, J, K Identity, 881 authentication, 920 third-parties, using, 976 authorization, 928 Authorize attribute, 920 claims, 955 connection strings, 324 creating users, 893 custom properties, 951 database, 887 password validation, 897 policies, 955, 964 resources, 970 roles, 928 seed data, 326 SportsStore, 323 third-party authentication, 976 user account validation, 904 user class, creating, 885 UserManager class, 890 Initializers for objects and collections, 80 L Lambda expressions, 90 Language features. See C# features Layouts. See Razor, layouts Linux. See Visual Studio Code Logging, 415 Loosely coupled components. See Dependency injection M macos. See Visual Studio Code Middleware, 391 Minifying files, 157 Model, 26 conventions, 991 role in MVC pattern, 53 Model binding, 33, 811 arrays and collections, 832 complex types, 821 data sources, 839 request bodies,

3 request headers, 841 default values, 818 simple types, 820 Model validation, 849 asp-validation-summary attribute, 860 checking the model state, 40 client-side validation, 874 SportsStore, 315 custom validation messages, 862 explicit validation, 855 highlighting validation errors, 43 input-validation-error attribute, 858 metadata, 869 Compare attribute, 870 custom attributes, defining, 872 Range attribute, 870 RegularExpression attribute, 870 Required attribute, 870 StringLength attribute, 870 ModelState property, 856, 866 remote validation, 877 SportsStore, 290, 310, 312 validation errors, showing, 858 using nullable types, 40 Model View Controller (MVC) action method, 17 architectural overview, 6 compared to ASP.NET Web Forms, 4 controller, 17 compared to Web Forms, 35 editing default controller class, 18 conventions, 63 creating new project, 13 extensibility, 7 history of, 3 original MVC Framework, 5 model. See Model open-source, 9 pattern ASP.NET implementation, 55 controllers, 54 models, 53 other patterns, 56 separation of concerns, 53 views, 55 projects. See Projects routing system, 8 view, 20 creating a view, 21 view engine, 23 Moq. See Unit testing MVC. See Model View Controller (MVC) N.NET Core, 5 Node.js, 349 Node Package Manager (NPM), 352 NuGet packages. See Visual Studio Null conditional operator, 73 Null values, 73 O OS X. See Visual Studio Code P, Q Partial views SportsStore, 235 Pattern matching, 83 Post/Redirect/Get Pattern, 540 Projects appsettings.json file, 211 Areas folder, 62 bower.json file, 376 Components folder, 62 Controllers folder, 62 creating new project, 60 Data folder, 62 Dependencies folder, 62 Empty template, 61 hosting environment, 402 Kestrel web server, 385 logging, 415 Migrations folder, 62 Models folder, 62 MVC services, 420 Program class, 382 Program.cs file, 63 Startup class, 386 Startup.cs file, 63 _ViewImports.cshtml file, 111 Views folder, 62 Web Application (MVC) template, 61 Properties, automatically implemented, 76 R Razor, 23 conditional statements, 122 configuration, 684 in context, 105 expressions, 109 layouts, 23,

4 Razor (cont.) Layout property, expression, 36, 109, 119 model keyword, expression, 113 strongly typed views, expression, 112 view imports, 111 _ViewImports.cshtml file, 111 view location expanders, 685 Views/Shared folder, 118 _ViewStart.cshtml file, 116 view start file, 116 Visual Studio IntelliSense, 110 Razor View Engine. See Razor Receiving form data, 32 RESTful Controllers. See Controllers Routing, 8, 429 areas, 497 Area attribute, 499 attribute routing, 463 Route attribute, 464 best practices, 503 catchall segments, 451 constraints, 453 combining, 459 custom, 461 regular expressions, 457 types, 458 values, 458 creating links, 471 customization, 484 default values, 437 MapRoute method, 435 optional segments, 449 ordering routes, 442 outgoing URLs, 471 segment variable reuse, 478 segment variables, 445 SportsStore, 207 static segments, 440 URL patterns, 434 URL segments, 434 S Scope validation, 213 Separation of concerns. See Model View Controller (MVC), pattern Services. See Dependency injection Session data, 263 temp data, 311 SportsStore administration features, 295 Bootstrap CSS framework, checkout process, 280 configuration, 212 connection string, 211 controllers, 204 database context class, 210 database, creating, 208 dependency injection, 271 deployment, 334 migrations, 284 model, creating, 200 navigation, 237 pagination, 218 partial view, 235 project, creating, 194 routing, 207 session data, 263 shopping cart, 257 tag helper, 221 unit test project, creating, 198 validation, 290 views, 205 SQLite, 364 Static content, 63 String interpolation, 79 T Tag helpers, 29, 721 anchor elements, 797 application relative URLs, 806 asp-action attribute, 29, 31, 758, 797 asp-antiforgery attribute, 758 asp-append-version attribute, 784 asp-area attribute, 758, 797 asp-controller attribute, 758, 797 asp-fallback-* attributes, 784, 794 asp-for attribute, 31, 762, 768, 770, 777 asp-format attribute, 762 asp-fragment attribute, 797 asp-host attribute, 797 asp-href-exclude attribute, 794 asp-href-include attribute, 794 asp-items attribute, 770 asp-route attribute, 758, 797 asp-src-exclude attribute, 784 asp-src-include attribute, 784 asp-validation-for attribute, 864 asp-validation-summary attribute, 42, 860, 867 cache busting, 791 caching, 799 content delivery networks, 792 context data, 729 cross-site request forgery, 760 CSS files, 794 form elements, 755 hosting environment, 783

5 image elements, 798 input elements, 762 Javascript files, 784 label elements, 768 output, producing, 730 registration, 731 scope, 734 select and option elements, 770 shorthand elements, creating, 739 SportsStore, 221 TagHelper base class, 728 textarea elements, 777 Temp data, 311 U Unit testing, 167 controllers, 526 Fact attribute, 170 filters, 596 isolating components, 174 mocking framework, 187 project configuration, 168 running tests, 172 SportsStore, 198 tag helpers, 733 test-driven development, 180 view components, 712 Visual Studio Code, 370 URL Routing. See Routing V Validation. See Model validation View bag, 534 View bag data, 24 View components, 691 asynchronous view components, 713 context data, 707 controllers, combined with, 715 HTML results, 705 partial views, 703 POCO view components, 699 results, 702 SportsStore, 246 ViewComponent base class, 700 ViewResult class, 23 Views, 657 appsettings.json file, 63 creating HTML form, 30 csproj file, 63 JSON data, 682 layout sections, expression, 28 naming conventions, 64 optional sections, 677 partial views, 679 purpose in MVC pattern, 55 Razor, 666 search locations, 528 selecting specific views, 687 specifying a model type, 28 strongly typed, 27 view engines, 659 view imports file, 62 Views folder, 62 view start file, 63 Visual Studio Bower, 133 bower.json file, 133 package version numbers, 135 Browser Link, 147 bundling and minification, 157 client-side packages, 133 configuring authentication, 14 debugging, 142 breakpoints, 143 data values, 146 developer exception pages, 141 IIS Express, 19 installing, 11 iterative development, 137 NuGet packages, 131 project templates file and folder structure, 16 Web Application (Model-View-Controller), 14 scaffolding, 204 selecting browser, 17 starting an application, 16 Test Explorer window, 172 Visual Studio See Visual Studio Visual Studio Code, 349 Bower, 352 C# extension, 355 creating new project, 356 Git, 351 installing, 353.NET Core, 352 Node.js, 349 Node Package Manager (NPM), 352 SQLite, 364 unit testing, 370 W Web API. See Controllers X, Y, Z xunit. See Unit testing 1017

Developing ASP.NET MVC Web Applications (486)

Developing ASP.NET MVC Web Applications (486) Developing ASP.NET MVC Web Applications (486) Design the application architecture Plan the application layers Plan data access; plan for separation of concerns, appropriate use of models, views, controllers,

More information

Building Effective ASP.NET MVC 5.x Web Applications using Visual Studio 2013

Building Effective ASP.NET MVC 5.x Web Applications using Visual Studio 2013 coursemonster.com/au Building Effective ASP.NET MVC 5.x Web Applications using Visual Studio 2013 Overview The course takes existing.net developers and provides them with the necessary skills to develop

More information

70-486: Developing ASP.NET MVC Web Applications

70-486: Developing ASP.NET MVC Web Applications 70-486: Developing ASP.NET MVC Web Applications Candidates for this exam are professional developers who use Microsoft Visual Studio 20120157 and Microsoft.NET FrameworkASP.NET to design and develop web

More information

Course Outline. Developing Web Applications with ASP.Net MVC 5. Course Description: Pre-requisites: Course Content:

Course Outline. Developing Web Applications with ASP.Net MVC 5. Course Description: Pre-requisites: Course Content: Developing Web Applications with ASP.Net MVC 5 Course Description: The Model View Controller Framework in ASP.NET provides a new way to develop Web applications for the Microsoft.NET platform. Differing

More information

Course Outline. ASP.NET MVC 5 Development Training Course ASPNETMVC5: 5 days Instructor Led. About this Course

Course Outline. ASP.NET MVC 5 Development Training Course ASPNETMVC5: 5 days Instructor Led. About this Course ASP.NET MVC 5 Development Training Course ASPNETMVC5: 5 days Instructor Led About this Course ASP.NET MVC 5 is Microsoft's last MVC release based on both the.net Framework or.net Core 1.0 for building

More information

Pro ASP.NET MVC 2 Framework

Pro ASP.NET MVC 2 Framework Pro ASP.NET MVC 2 Framework Second Edition Steven Sanderson Apress TIB/UB Hannover 89 133 297 713 Contents at a Glance Contents About the Author About the Technical Reviewers Acknowledgments Introduction

More information

A-1. Installing SQL Server 2016 Developer. Downloading Microsoft SQL Server 2016 Developer

A-1. Installing SQL Server 2016 Developer. Downloading Microsoft SQL Server 2016 Developer Appendix A-1. Installing SQL Server 2016 Developer Visual Studio comes with a basic version of SQL Server called SQL Server Express LocalDB. LocalDB is a great database to use for prototyping and basic

More information

20486: Developing ASP.NET MVC 4 Web Applications

20486: Developing ASP.NET MVC 4 Web Applications 20486: Developing ASP.NET MVC 4 Web Applications Length: 5 days Audience: Developers Level: 300 OVERVIEW In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Developing ASP.NET MVC 5 Web Applications. Course Outline

Developing ASP.NET MVC 5 Web Applications. Course Outline Developing ASP.NET MVC 5 Web Applications Course Outline Module 1: Exploring ASP.NET MVC 5 The goal of this module is to outline to the students the components of the Microsoft Web Technologies stack,

More information

Comprehensive AngularJS Programming (5 Days)

Comprehensive AngularJS Programming (5 Days) www.peaklearningllc.com S103 Comprehensive AngularJS Programming (5 Days) The AngularJS framework augments applications with the "model-view-controller" pattern which makes applications easier to develop

More information

Developing ASP.Net MVC 4 Web Application

Developing ASP.Net MVC 4 Web Application Developing ASP.Net MVC 4 Web Application About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus will

More information

Course 20486B: Developing ASP.NET MVC 4 Web Applications

Course 20486B: Developing ASP.NET MVC 4 Web Applications Course 20486B: Developing ASP.NET MVC 4 Web Applications Overview In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus

More information

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS

COURSE 20486B: DEVELOPING ASP.NET MVC 4 WEB APPLICATIONS ABOUT THIS COURSE In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5 tools and technologies. The focus will be on coding activities that enhance the

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Duration: 5 Days Course Code: 20486B About this course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

Advance Dotnet ( 2 Month )

Advance Dotnet ( 2 Month ) Advance Dotnet ( 2 Month ) Course Content Introduction WCF Using.Net 4.0 Service Oriented Architecture Three Basic Layers First Principle Communication and Integration Integration Styles Legacy Applications

More information

Visual Studio Course Developing ASP.NET MVC 5 Web Applications

Visual Studio Course Developing ASP.NET MVC 5 Web Applications Visual Studio Course - 20486 Developing ASP.NET MVC 5 Web Applications Length 5 days Prerequisites Before attending this course, students must have: In this course, students will learn to develop advanced

More information

ASP.NET MVC Training

ASP.NET MVC Training TRELLISSOFT ASP.NET MVC Training About This Course: Audience(s): Developers Technology: Visual Studio Duration: 6 days (48 Hours) Language(s): English Overview In this course, students will learn to develop

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Course 20486B; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework 4.5

More information

20486: Developing ASP.NET MVC 4 Web Applications (5 Days)

20486: Developing ASP.NET MVC 4 Web Applications (5 Days) www.peaklearningllc.com 20486: Developing ASP.NET MVC 4 Web Applications (5 Days) About this Course In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications Developing ASP.NET MVC 5 Web Applications Course 20486C; 5 days, Instructor-led Course Description In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools

More information

Professional ASP.NET MVC 4

Professional ASP.NET MVC 4 Professional ASP.NET MVC 4 Galloway, J ISBN-13: 9781118348468 Table of Contents FOREWORD xxvii INTRODUCTION xxix CHAPTER 1: GETTING STARTED 1 A Quick Introduction to ASP.NET MVC 1 How ASP.NET MVC Fits

More information

20486 Developing ASP.NET MVC 5 Web Applications

20486 Developing ASP.NET MVC 5 Web Applications Course Overview In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework tools and technologies. The focus will be on coding activities that enhance the performance

More information

Developing ASP.NET MVC 4 Web Applications

Developing ASP.NET MVC 4 Web Applications Developing ASP.NET MVC 4 Web Applications Código del curso: 20486 Duración: 5 días Acerca de este curso In this course, students will learn to develop advanced ASP.NET MVC applications using.net Framework

More information

70-487: Developing Windows Azure and Web Services

70-487: Developing Windows Azure and Web Services 70-487: Developing Windows Azure and Web Services Candidates for this certification are professional developers that use Visual Studio 2015112017 11 and the Microsoft.NET Core Framework 4.5 to design and

More information

Full Stack Web Developer

Full Stack Web Developer Full Stack Web Developer S.NO Technologies 1 HTML5 &CSS3 2 JavaScript, Object Oriented JavaScript& jquery 3 PHP&MYSQL Objective: Understand the importance of the web as a medium of communication. Understand

More information

SportsStore: Administration

SportsStore: Administration C H A P T E R 11 SportsStore: Administration In this chapter, I continue to build the SportsStore application in order to give the site administrator a way of managing orders and products. Managing Orders

More information

Essential Angular for ASP.NET Core MVC

Essential Angular for ASP.NET Core MVC Essential Angular for ASP.NET Core MVC Adam Freeman Essential Angular for ASP.NET Core MVC Adam Freeman London, UK ISBN-13 (pbk): 978-1-4842-2915-6 ISBN-13 (electronic): 978-1-4842-2916-3 DOI 10.1007/978-1-4842-2916-3

More information

Pro ASP.NET MVC 5. Adam Freeman

Pro ASP.NET MVC 5. Adam Freeman Pro ASP.NET MVC 5 Adam Freeman Pro ASP.NET MVC 5 Copyright 2013 by Adam Freeman This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is

More information

20486C: Developing ASP.NET MVC 5 Web Applications

20486C: Developing ASP.NET MVC 5 Web Applications 20486C: Developing ASP.NET MVC 5 Web Course Details Course Code: Duration: Notes: 20486C 5 days This course syllabus should be used to determine whether the course is appropriate for the students, based

More information

Microsoft Developing ASP.NET MVC 4 Web Applications

Microsoft Developing ASP.NET MVC 4 Web Applications 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20486 - Developing ASP.NET MVC 4 Web Applications Length 5 days Price $4290.00 (inc GST) Version C Overview In this course, students will learn to develop

More information

20486-Developing ASP.NET MVC 4 Web Applications

20486-Developing ASP.NET MVC 4 Web Applications Course Outline 20486-Developing ASP.NET MVC 4 Web Applications Duration: 5 days (30 hours) Target Audience: This course is intended for professional web developers who use Microsoft Visual Studio in an

More information

DEVELOPING WEB AZURE AND WEB SERVICES MICROSOFT WINDOWS AZURE

DEVELOPING WEB AZURE AND WEB SERVICES MICROSOFT WINDOWS AZURE 70-487 DEVELOPING WEB AZURE AND WEB SERVICES MICROSOFT WINDOWS AZURE ACCESSING DATA(20 TO 25%) 1) Choose data access technologies a) Choose a technology (ADO.NET, Entity Framework, WCF Data Services, Azure

More information

The Grumpy Old Programmer s First MV6.NET Core App

The Grumpy Old Programmer s First MV6.NET Core App The Grumpy Old Programmer s First MV6.NET Core App Paul Litwin Fred Hutchinson Cancer Research Center plitwin@fredhutch.org @plitwin Slides & samples can be found here http://tinyurl.com/devint2015oct

More information

Full Stack Web Developer

Full Stack Web Developer Full Stack Web Developer Course Contents: Introduction to Web Development HTML5 and CSS3 Introduction to HTML5 Why HTML5 Benefits Of HTML5 over HTML HTML 5 for Making Dynamic Page HTML5 for making Graphics

More information

Angular 2 Programming

Angular 2 Programming Course Overview Angular 2 is the next iteration of the AngularJS framework. It promises better performance. It uses TypeScript programming language for type safe programming. Overall you should see better

More information

"Charting the Course... Comprehensive Angular. Course Summary

Charting the Course... Comprehensive Angular. Course Summary Description Course Summary Angular is a powerful client-side JavaScript framework from Google that supports simple, maintainable, responsive, and modular applications. It uses modern web platform capabilities

More information

Arjen de Blok. Senior Technical Consultant bij ICT Groep ( sinds 1995 Programmeren sinds 1990 Technologiën. Links

Arjen de Blok. Senior Technical Consultant bij ICT Groep (  sinds 1995 Programmeren sinds 1990 Technologiën. Links Arjen de Blok Senior Technical Consultant bij ICT Groep (www.ict.eu) sinds 1995 Programmeren sinds 1990 Technologiën Links Visual C++ met Microsoft Foundation Classes.NET WinForms & WPF Silverlight ASP.NET

More information

Bringing Together One ASP.NET

Bringing Together One ASP.NET Bringing Together One ASP.NET Overview ASP.NET is a framework for building Web sites, apps and services using specialized technologies such as MVC, Web API and others. With the expansion ASP.NET has seen

More information

Integrating Angular with ASP.NET Core RESTful Services. Dan Wahlin

Integrating Angular with ASP.NET Core RESTful Services. Dan Wahlin Integrating Angular with ASP.NET Core RESTful Services Dan Wahlin Dan Wahlin https://blog.codewithdan.com @DanWahlin Get the Content: http://codewithdan.me/angular-aspnet-core Agenda The Big Picture Creating

More information

Index. Alessandro Del Sole 2017 A. Del Sole, Beginning Visual Studio for Mac,

Index. Alessandro Del Sole 2017 A. Del Sole, Beginning Visual Studio for Mac, Index A Android applications, Xamarin activity and intent, 116 APIs in C# Activity classes, 123 Android manifest, 129 App.cs, 123 app properties, setting, 128 CreateDirectoryForPictures methods, 124 device

More information

Contents in Detail. Foreword by Xavier Noria

Contents in Detail. Foreword by Xavier Noria Contents in Detail Foreword by Xavier Noria Acknowledgments xv xvii Introduction xix Who This Book Is For................................................ xx Overview...xx Installation.... xxi Ruby, Rails,

More information

This tutorial is designed for software programmers who would like to learn the basics of ASP.NET Core from scratch.

This tutorial is designed for software programmers who would like to learn the basics of ASP.NET Core from scratch. About the Tutorial is the new web framework from Microsoft. is the framework you want to use for web development with.net. At the end this tutorial, you will have everything you need to start using and

More information

Developing ASP.NET MVC 5 Web Applications

Developing ASP.NET MVC 5 Web Applications 20486C - Version: 1 23 February 2018 Developing ASP.NET MVC 5 Web Developing ASP.NET MVC 5 Web 20486C - Version: 1 5 days Course Description: In this course, students will learn to develop advanced ASP.NET

More information

ASP 5 Workshop. Getting Started. AmmonsOnline.com

ASP 5 Workshop. Getting Started. AmmonsOnline.com ASP 5 Workshop Getting Started AmmonsOnline.com Who Am I? Jeff Ammons Principal Architect Sage Software President GGMUG Gwinnett, Georgia, Microsoft User Group 2 nd Thursday Gwinnett Technical College

More information

P a g e 1. Danish Technological Institute. Scripting and Web Languages Online Course k Scripting and Web Languages

P a g e 1. Danish Technological Institute. Scripting and Web Languages   Online Course k Scripting and Web Languages P a g e 1 Online Course k72853 Scripting and Web Languages P a g e 2 Title Estimated Duration (hrs) JsRender Fundamentals 2 Advanced JsRender Features 3 JavaScript SPA: Getting Started with SPA in Visual

More information

55249: Developing with the SharePoint Framework Duration: 05 days

55249: Developing with the SharePoint Framework Duration: 05 days Let s Reach For Excellence! TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC Address: 103 Pasteur, Dist.1, HCMC Tel: 08 38245819; 38239761 Email: traincert@tdt-tanduc.com Website: www.tdt-tanduc.com; www.tanducits.com

More information

Apex TG India Pvt. Ltd.

Apex TG India Pvt. Ltd. (Core C# Programming Constructs) Introduction of.net Framework 4.5 FEATURES OF DOTNET 4.5 CLR,CLS,CTS, MSIL COMPILER WITH TYPES ASSEMBLY WITH TYPES Basic Concepts DECISION CONSTRUCTS LOOPING SWITCH OPERATOR

More information

All India Council For Research & Training

All India Council For Research & Training WEB DEVELOPMENT & DESIGNING Are you looking for a master program in web that covers everything related to web? Then yes! You have landed up on the right page. Web Master Course is an advanced web designing,

More information

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M

MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M MASTERS COURSE IN FULL STACK WEB APPLICATION DEVELOPMENT W W W. W E B S T A C K A C A D E M Y. C O M COURSE OBJECTIVES Enable participants to develop a complete web application from the scratch that includes

More information

ASP.NET MVC 5. Nemanja Kojic, MScEE

ASP.NET MVC 5. Nemanja Kojic, MScEE ASP.NET MVC 5 Nemanja Kojic, MScEE 1 What is MVC? Model-View-Controller (MVC) Standard Architectural Pattern Separation of concerns: model, view, controller 2 of 114 ASP.NET MVC Framework An alternative

More information

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI /

Index. Chaminda Chandrasekara 2017 C. Chandrasekara, Beginning Build and Release Management with TFS 2017 and VSTS, DOI / Index A Agent platforms, 10 system and user capabilities, 10 Agent pool add user, 12 assign permissions, 55 56 default pool, 8 hosted Linux pool, 8 hosted pool, 7 set up assign administrator role, 45 auto-provision

More information

Babu Madhav Institute of information technology 2016

Babu Madhav Institute of information technology 2016 Course Code: 060010602 Course Name: Web Development using ASP.NET MVC Unit 1 Short Questions 1. What is an ASP.NET MVC? 2. Write use of FilterConfiguration.cs file. 3. Define: 1) Model 2) View 3) Controller

More information

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course

PHP WITH ANGULAR CURRICULUM. What you will Be Able to Achieve During This Course PHP WITH ANGULAR CURRICULUM What you will Be Able to Achieve During This Course This course will enable you to build real-world, dynamic web sites. If you've built websites using plain HTML, you realize

More information

Using Visual Studio 2017

Using Visual Studio 2017 C H A P T E R 1 Using Visual Studio 2017 In this chapter, I explain the process for installing Visual Studio 2017 and recreate the Party Invites project from Chapter 2 of Pro ASP.NET Core MVC. As you will

More information

Programming Fundamentals of Web Applications

Programming Fundamentals of Web Applications Programming Fundamentals of Web Applications Course 10958B; 5 days, Instructor-led Course Description This five-day instructor-led course provides the knowledge and skills to develop web applications by

More information

EVALUATION COPY. Unauthorized reproduction or distribution is prohibitied ASP.NET MVC USING C#

EVALUATION COPY. Unauthorized reproduction or distribution is prohibitied ASP.NET MVC USING C# ASP.NET MVC USING C# ASP.NET MVC Using C# Rev. 4.8 Student Guide Information in this document is subject to change without notice. Companies, names and data used in examples herein are fictitious unless

More information

Open Source Library Developer & IT Pro

Open Source Library Developer & IT Pro Open Source Library Developer & IT Pro Databases LEV 5 00:00:00 NoSQL/MongoDB: Buildout to Going Live INT 5 02:15:11 NoSQL/MongoDB: Implementation of AngularJS INT 2 00:59:55 NoSQL: What is NoSQL INT 4

More information

ASP.NET Using C# (VS2013)

ASP.NET Using C# (VS2013) ASP.NET Using C# (VS2013) This five-day course provides a comprehensive and practical hands-on introduction to developing Web applications using ASP.NET 4.5.1 and Visual Studio 2013. It includes an introduction

More information

CHAPTER 1: A QUICK TOUR 3

CHAPTER 1: A QUICK TOUR 3 INTRODUCTION xxxi PART I: INTEGRATED DEVELOPMENT ENVIRONMENT CHAPTER 1: A QUICK TOUR 3 Getting Started 3 Installing Visual Studio 2017 3 Running Visual Studio 2017 9 Is Visual Studio Really Cloud Enabled?

More information

POWER BI BOOTCAMP. COURSE INCLUDES: 4-days of instructor led discussion, Hands-on Office labs and ebook.

POWER BI BOOTCAMP. COURSE INCLUDES: 4-days of instructor led discussion, Hands-on Office labs and ebook. Course Code : AUDIENCE : FORMAT: LENGTH: POWER BI BOOTCAMP O365-412-PBID (CP PBD365) Professional Developers Instructor-led training with hands-on labs 4 Days COURSE INCLUDES: 4-days of instructor led

More information

MS-20487: Developing Windows Azure and Web Services

MS-20487: Developing Windows Azure and Web Services MS-20487: Developing Windows Azure and Web Services Description In this course, students will learn how to design and develop services that access local and remote data from various data sources. Students

More information

Index. Lee Naylor 2016 L. Naylor, ASP.NET MVC with Entity Framework and CSS, DOI /

Index. Lee Naylor 2016 L. Naylor, ASP.NET MVC with Entity Framework and CSS, DOI / Index A AccountController class, 327, 329 Register() method, 251 252, 280 282 AddCssClass() method, 382 386 Adding a Controller and Views, 16 20, 434 437 Animation property, 483 app.createperowincontext()

More information

PHP + ANGULAR4 CURRICULUM 6 WEEKS

PHP + ANGULAR4 CURRICULUM 6 WEEKS PHP + ANGULAR4 CURRICULUM 6 WEEKS Hands-On Training In this course, you develop PHP scripts to perform a variety to takes, culminating in the development of a full database-driven Web page. Exercises include:

More information

FRONT END WEB. {< Course Details >}

FRONT END WEB. {< Course Details >} FRONT END WEB {< Course Details >} centers@acadgild.com www.acadgild.com 90360 10796 css { } HTML JS { ; } centers@acadgild.com www.acadgild.com 90360 10796 Brief About the Course Our Front end development

More information

Pro Angular 6. Third Edition. Adam Freeman

Pro Angular 6. Third Edition. Adam Freeman Pro Angular 6 Third Edition Adam Freeman Pro Angular 6 Adam Freeman London, UK ISBN-13 (pbk): 978-1-4842-3648-2 ISBN-13 (electronic): 978-1-4842-3649-9 https://doi.org/10.1007/978-1-4842-3649-9 Library

More information

SHAREPOINT DEVELOPMENT FOR 2016/2013

SHAREPOINT DEVELOPMENT FOR 2016/2013 SHAREPOINT DEVELOPMENT FOR 2016/2013 Course Code: AUDIENCE: FORMAT: LENGTH: SP16-310-GSA (CP GSA2016) Professional Developers Instructor-led training with hands-on labs 5 Days COURSE INCLUDES: 5-days of

More information

MarkLogic Server. Reference Application Architecture Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Reference Application Architecture Guide. MarkLogic 9 May, Copyright 2017 MarkLogic Corporation. All rights reserved. Reference Application Architecture Guide 1 MarkLogic 9 May, 2017 Last Revised: 9.0-1, May, 2017 Copyright 2017 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Reference

More information

Advanced WCF 4.0 .NET. Web Services. Contents for.net Professionals. Learn new and stay updated. Design Patterns, OOPS Principles, WCF, WPF, MVC &LINQ

Advanced WCF 4.0 .NET. Web Services. Contents for.net Professionals. Learn new and stay updated. Design Patterns, OOPS Principles, WCF, WPF, MVC &LINQ Serialization PLINQ WPF LINQ SOA Design Patterns Web Services 4.0.NET Reflection Reflection WCF MVC Microsoft Visual Studio 2010 Advanced Contents for.net Professionals Learn new and stay updated Design

More information

Getting MEAN. with Mongo, Express, Angular, and Node SIMON HOLMES MANNING SHELTER ISLAND

Getting MEAN. with Mongo, Express, Angular, and Node SIMON HOLMES MANNING SHELTER ISLAND Getting MEAN with Mongo, Express, Angular, and Node SIMON HOLMES MANNING SHELTER ISLAND For online information and ordering of this and other Manning books, please visit www.manning.com. The publisher

More information

ANGULAR 2.X,4.X + TYPESRCIPT by Sindhu

ANGULAR 2.X,4.X + TYPESRCIPT by Sindhu ANGULAR 2.X,4.X + TYPESRCIPT by Sindhu GETTING STARTED WITH TYPESCRIPT Installing TypeScript Compiling the code Building a simple demo. UNDERSTANDING CLASSES Building a class Adding properties Demo of

More information

Working with Controllers

Working with Controllers Controller 1 Objectives 2 Define and describe controllers Describe how to work with action methods Explain how to invoke action methods Explain routing requests Describe URL patterns Working with Controllers

More information

CHAPTER 1: INTRODUCING C# 3

CHAPTER 1: INTRODUCING C# 3 INTRODUCTION xix PART I: THE OOP LANGUAGE CHAPTER 1: INTRODUCING C# 3 What Is the.net Framework? 4 What s in the.net Framework? 4 Writing Applications Using the.net Framework 5 What Is C#? 8 Applications

More information

Practical Node.js. Building Real-World Scalable Web Apps. Apress* Azat Mardan

Practical Node.js. Building Real-World Scalable Web Apps. Apress* Azat Mardan Practical Node.js Building Real-World Scalable Web Apps Azat Mardan Apress* Contents About the Author About the Technical Reviewer Acknowledgments Introduction xv xvii xix xxi Chapter 1: Setting up Node.js

More information

CodeValue. C ollege. Prerequisites: Basic knowledge of web development and especially JavaScript.

CodeValue. C ollege. Prerequisites: Basic knowledge of web development and especially JavaScript. Course Syllabuses Introduction to AngularJS Length: 3 days Prerequisites: Basic knowledge of web development and especially JavaScript. Objectives: Students will learn to take advantage of AngularJS and

More information

August, HPE Propel Microservices & Jumpstart

August, HPE Propel Microservices & Jumpstart August, 2016 HPE Propel s & Jumpstart Jumpstart Value Quickly build modern web applications Single page application Modular microservices architecture app generator Modularity provides better upgradeability

More information

Enterprise Web Development

Enterprise Web Development Enterprise Web Development Yakov Fain, Victor Rasputnis, Anatole Tartakovsky, and Viktor Gamov Beijing Cambridge Farnham Koln Sebastopol Tokyo O'REILLY Table of Contents Preface Introduction xi xxiii Part

More information

INTRO TO ASP.NET MVC JAY HARRIS.NET DEVELOPER

INTRO TO ASP.NET MVC JAY HARRIS.NET DEVELOPER INTRO TO JAY HARRIS.NET DEVELOPER WHAT IS MVC? It is a powerful and elegant means of separating concerns There is no universally unique MVC pattern. MVC is a concept rather than a solid programming framework.

More information

Flask Web Development Course Catalog

Flask Web Development Course Catalog Flask Web Development Course Catalog Enhance Your Contribution to the Business, Earn Industry-recognized Accreditations, and Develop Skills that Help You Advance in Your Career March 2018 www.iotintercon.com

More information

Overview

Overview HTML4 & HTML5 Overview Basic Tags Elements Attributes Formatting Phrase Tags Meta Tags Comments Examples / Demos : Text Examples Headings Examples Links Examples Images Examples Lists Examples Tables Examples

More information

Index. Note: Boldface numbers indicate code and illustrations; an italic t indicates a table.

Index. Note: Boldface numbers indicate code and illustrations; an italic t indicates a table. Index Note: Boldface numbers indicate code and illustrations; an italic t indicates a table. A absolute positioning, in HTML, 184 187, 184 187 abstract classes, 6, 6 Accept header, 260 265, 261 265 access

More information

NetCoreControls Documentation

NetCoreControls Documentation NetCoreControls Documentation Release 0.1.0 Joao Pereira Jun 15, 2018 Get started 1 Features 3 1.1 Setup and Overview........................................... 3 1.2 Basic Usage...............................................

More information

[MS20487]: Developing Windows Azure and Web Services

[MS20487]: Developing Windows Azure and Web Services [MS20487]: Developing Windows Azure and Web Services Length : 5 Days Audience(s) : Developers Level : 300 Technology : Cross-Platform Development Delivery Method : Instructor-led (Classroom) Course Overview

More information

THE GREAT SHAREPOINT ADVENTURE 2016

THE GREAT SHAREPOINT ADVENTURE 2016 Education and Support for SharePoint, Office 365 and Azure www.combined-knowledge.com COURSE OUTLINE THE GREAT SHAREPOINT ADVENTURE 2016 Course Code GSA2016 Length 5 Days About this course The Great SharePoint

More information

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable();

ASP.net. Microsoft. Getting Started with. protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); Getting Started with protected void Page_Load(object sender, EventArgs e) { productsdatatable = new DataTable(); string connectionstring = System.Configuration.ConfigurationManager.ConnectionStrings ["default"].connectionstring;!

More information

Frontend UI Training. Whats App :

Frontend UI Training. Whats App : Frontend UI Training Whats App : + 916 667 2961 trainer.subbu@gmail.com What Includes? 1. HTML 5 2. CSS 3 3. SASS 4. JavaScript 5. ES 6/7 6. jquery 7. Bootstrap 8. AJAX / JSON 9. Angular JS 1x 10. Node

More information

ComponentSpace SAML v2.0 Examples Guide

ComponentSpace SAML v2.0 Examples Guide ComponentSpace SAML v2.0 Examples Guide Copyright ComponentSpace Pty Ltd 2017-2018. All rights reserved. www.componentspace.com Contents Introduction... 1 Visual Studio Solution Files... 1 Visual Studio

More information

Grading Rubric Homework 1

Grading Rubric Homework 1 Grading Rubric Homework 1 Used Git, has many commits, over time, wrote appropriate commit comments, set up Git correctly with git config Cloning repository results in a working site, no broken links, no

More information

Index. Holger Schwichtenberg 2018 H. Schwichtenberg, Modern Data Access with Entity Framework Core,

Index. Holger Schwichtenberg 2018 H. Schwichtenberg, Modern Data Access with Entity Framework Core, A Aggregate functions, 172 Alternative key HasAlternateKey(), 348 Microsoft SQL Server Management Studio, 348, 350 Project EFC_MappingTest, 350 unique index vs., 347 Analysis functions, 493 494 ASP.NET

More information

Hands On, Instructor-Led IT Courses Across Colorado

Hands On, Instructor-Led IT Courses Across Colorado Hands On, Instructor-Led IT Courses Across Colorado Offering instructor-led courses in: Java, Java EE and OOAD SQL Programming and SQL Server UNIX, Linux Administration.NET Programming Web Programming

More information

Audience: Experienced application developers or architects responsible for Web applications in a Microsoft environment.

Audience: Experienced application developers or architects responsible for Web applications in a Microsoft environment. ASP.NET Using C# (VS 2010) This five-day course provides a comprehensive and practical hands-on introduction to developing Web applications using ASP.NET 4.0 and C#. It includes an introduction to ASP.NET

More information

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010

10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 10267A CS: Developing Web Applications Using Microsoft Visual Studio 2010 Course Overview This instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

The Great SharePoint 2016/2013 Adventure for Developers

The Great SharePoint 2016/2013 Adventure for Developers The Great SharePoint 2016/2013 Adventure for Developers Developing for SharePoint 2016/2013 On-premises Course Code Audience Format Length Course Description Student Prerequisites GSA2016 Professional

More information

DOT NET Syllabus (6 Months)

DOT NET Syllabus (6 Months) DOT NET Syllabus (6 Months) THE COMMON LANGUAGE RUNTIME (C.L.R.) CLR Architecture and Services The.Net Intermediate Language (IL) Just- In- Time Compilation and CLS Disassembling.Net Application to IL

More information

Production Registration System 2.0

Production Registration System 2.0 Production Registration System 2.0 B.Sc. Computer Science Developer s Manual Spring 2017 Group members Albina Guseynova Bryndís Eva Erlingsdóttir Höskuldur Ágústsson Kristinn Heiðar Freysteinsson Instructor

More information

SportsStore: Navigation

SportsStore: Navigation C H A P T E R 9 In this chapter, I continue to build out the SportsStore example app. In the previous chapter, I add support for navigating around the application and start building a shopping cart. Adding

More information

Pro JavaScript. Development. Coding, Capabilities, and Tooling. Den Odell. Apress"

Pro JavaScript. Development. Coding, Capabilities, and Tooling. Den Odell. Apress Pro JavaScript Development Coding, Capabilities, and Tooling Den Odell Apress" Contents J About the Author About the Technical Reviewers Acknowledgments Introduction xv xvii xix xxi Chapter 1: Object-Oriented

More information

.Net Job Assured Course (3 in 1)

.Net Job Assured Course (3 in 1) T&C Apply.Net Job Assured Course (3 in 1) From Quick pert Infotech Learning Process .Net Developer Learning Path to Crack Interviews Full Fledged Dot Net Developer (3 in 1 - Opens.Net, WebDesign & Database

More information

CodingFactory. Learn.NET MVC with WCF & Angular. This syllabus is cover all the basic to. Angular. Table of Contents

CodingFactory. Learn.NET MVC with WCF & Angular. This syllabus is cover all the basic to. Angular. Table of Contents Learn.NET MVC with WCF & Angular This syllabus is cover all the basic to advance topics of MVC,WCF,ORM & Angular Table of Contents 1. Module1.NET Basic... 2. Module2 ORM... 3. Module3 SOA,REST... 4. Module4

More information

Full Stack boot camp

Full Stack boot camp Name Full Stack boot camp Duration (Hours) JavaScript Programming 56 Git 8 Front End Development Basics 24 Typescript 8 React Basics 40 E2E Testing 8 Build & Setup 8 Advanced JavaScript 48 NodeJS 24 Building

More information

TYPESCRIPT. Presented by Clarke Bowers

TYPESCRIPT. Presented by Clarke Bowers TYPESCRIPT Presented by Clarke Bowers ABOUT THE PRESENTER Clarke D. Bowers http://www.cbsoftwareengineering.com/ mailto: clarke@cbsoftwareengineering.com 35 years of industry experience Has developed everything

More information