5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016

Size: px
Start display at page:

Download "5 Years Integrated M.Sc. (IT) 6th Semester Web Development using ASP.NET MVC Practical List 2016"

Transcription

1 Practical No: 1 Enrollment No: Name: Practical Problem (a) Create MVC 4 application which takes value from browser URL. Application should display following output based on input no : Ex. No = 1234 o/p : 1 is divisible by 1 12 is divisible by divisible by divisible by 4 (b) Create an MVC4 application to display student details using only controller, also demonstrate the use of ActionResult method. Controller student must contain StudentID, fname, lname, gender, contact properties /Home/Student/ Student is Jay A. Patel First Name : Jay Last Name : Patel Gender : Male Contact : (c) Create MVC4 application to display current date time using ViewBag and ViewData. (d) Write steps for adding view in MVC 4 application with screen shots. (e) Create an MVC4 application to check whether the number is even or odd using simple for loop and function in controller as well as in view. Number 2 is even. (f) Create an MVC4 application to demonstrate all the options of Scaffolding templates.(list, Create, Details, Edit, Delete). (g) Create an MVC4 application for displaying City list using ViewBag and ViewData. (h) Create MVC4 application using Empty template for a view by following layout. Home About Contact Address Home Getting started with a basic document in Microsoft Office Word 2007 is as easy as opening a new blank document and starting to type. Or, if you want to create a specific type of document, such as a business plan or a resumé, you can save time by starting with a template. Ms. Jigna Solanky, Mr. Kaushal Jani Page 1

2 Objective (s) Pre-requisite Duration for completion PEO(s) to be achieved PO(s) to be achieved CO(s) to be achieved Solution must contain Nature of submission References for solving the problem Sample Testing data Post Laboratory questions To be familiar with Windows Environment and programming style. To make them aware the structure of MVC4 application To make them understand how to create the controller and display output without using view. To be familiar with razor view engine syntax. To be familiar with scaffolding templates options. Programming experience with any ASP.NET with C#, Familiar with Visual Studio IDE and types of application that can be created using ASP.NET 6 hours PEO2: To provide quality practical skill of tools and technologies to solve industry problems. PO6: Ability to use the techniques, skills and modern tools as necessary for software development CO1: Understand how to use ASP.NET MVC CO2: In-depth knowledge of developing web application with controller handling. CO3: In-depth knowledge of developing web application with model Description of what is MVC, requirement to install MVC4. Steps to create MVC4 application, MVC application structure. Source code, Sample test data with output.(code of Controller, View and Model) Draw diagrams where needed. Handwritten NA Search on Internet Jon Galloway, Phil Haack, Brad Wilson and K. Scott Allen, professional_asp.net_mvc_4, Wrox 1. What is MVC? 2. What is required to install MVC4? 3. On which operating system can we run MVC4? 4. List out the folder name which are created when user develop internet application in MVC4. 5. Where is general layout file located in MVC4 Basic application? 6. What is a pattern of URL to execute any view in MVC4? 7. List out difference between ViewBag and ViewData. 8. Write syntax to display ViewBag variable data in view. 9. What a difference between normal.aspx web form and.cshtml view page? 10. State the importance of Scaffolding with the meaning of the same. Assessment Solution achieves the desired objective(s) Viva Out of Marks 10 5 Secured by the student Signature and Date Ms. Jigna Solanky, Mr. Kaushal Jani Page 2

3 Practical No: 2 Enrollment No: Name: Practical Problem (a) Create and MVC4 application to demonstrate Models using Strongly Typed View. (b) Create an MVC4 application to create custom layout and CSS file. Use this layout and CSS file in your application. (c) Create an MVC4 application to connect with database using Entity Data model and list out the steps for the same. (d) Create an MVC4 application to connect with database with code using Entity Data Model. (Create, Edit, Delete, Details). (e) Create an MVC4 application to connect with database with code using code first convention method. (Create, Edit, Delete, Details, List) (f) Create pages for Add, update, delete, details and list of student using scaffolding template technique. i) Create Student table with columns StudentID, FirstName, LastName, Div and ContactNo. (g) Create Home page as follows for MVC site. i) Data of categories must be derived from database using Entity Data Model. ii) Data of products must be derived from database using Entity Data Model. (h) Create pages as follows for MVC site. i) List of Albums should be displayed based on selection of category. 1. Use concept of ID in address bar. 2. Also use strongly typed view concept. ii) Each album should have description and link derived from database. iii) After clicking on album details should be displayed as follows on another view. Ms. Jigna Solanky, Mr. Kaushal Jani Page 3

4 (i) Create registration page as follows with Model and strongly typed view using following helpers. Helper HTML Element Html.CheckBox <input type= checkbox /> Html.DropDownList <select></select> Html.Hidden <input type= hidden /> Html.Label <label for= /> Html.ListBox <select></select> or <select multiple></select> Html.Password <input type= password /> Html.Radio <input type= radio /> Html.TextArea <textarea></textarea> Html.TextBox <input type= text /> (j) Modify the above application and create a login page using which employee can login into their account. Application should check username and password from database entry from Employee table. i) Table Employee must contain ID, UserName, password, department, shift columns ii) Username and password also have validation of compulsory entry of data iii) Password must have data type checking Ms. Jigna Solanky, Mr. Kaushal Jani Page 4

5 Objective(s) To make them understand how to create class in MVC model and how to relate that class with your ActionResult. To make them aware how layout and CSS file can be created. To make them understand how to create database application using coding as well the use of context class. To be familiar with ADO.NET Entity Data Model Framework. Pre-requisite 3 tire architecture concept (MVC), Model, View and Controller, HTML Helpers and Razor View Engine Duration for completion 6 hours PEO(s) to be achieved PEO2: To provide quality practical skill of tools and technologies to solve industry problems. PO(s) to be achieved PO6: Ability to use the techniques, skills and modern tools as necessary for software development CO(s) to be achieved CO1: Understand how to use ASP.NET MVC CO2: In-depth knowledge of developing web application with controller handling. CO3: In-depth knowledge of developing web application with model CO4: In-depth knowledge of developing web application with HTML helpers. Solution must contain Source code, Sample test data with output.(code of Controller, View and Model) Draw diagrams where needed. Nature of submission Handwritten References for solving the problem Sample Testing data NA Search on Internet Jon Galloway, Phil Haack, Brad Wilson and K. Scott Allen, professional_asp.net_mvc_4, Wrox Post Laboratory questions 1. What is sad path and happy path? 2. Which are the two different ways to bind model data with action method of controller? 3. Write down the importance of why developer is adding annotation [HttpPost] before any action method in controller. 4. Which HTML helper can be used to create a form in MVC4? 5. Distinguish two points between GET and POST. 6. If user wants to apply custom layout to any of its view, write down syntax to apply custom layout to any view. 7. What is the purpose function? 8. What is Entity Data Model? 9. Which Scaffolding templates type we have to select to generate the output automatically with view when we are creating MVC application using Entity Data Model? 10. Which part of MVC4 is used to create a class which will generate table in database? 11. How developer can establish connectivity between application and database? 12. Which namespace is required to use DBcontext class? Ms. Jigna Solanky, Mr. Kaushal Jani Page 5

6 13. What does T stands in Dbset<T>? What is need a need of DbSet<T>? 14. How developer can explicitly define view as a strongly typed view? 15. Write down 2 difference between the Action and the Method. Assessment Solution achieves the desired objective(s) Out of Marks 10 5 Secured by the student Signature and Date Viva Ms. Jigna Solanky, Mr. Kaushal Jani Page 6

7 Practical No: 3 Enrollment No: Name: Practical Problem (a) Create an MVC4 application to create registration form which stores information about students and store them in database using DbContext Class.(Verify Layout before executing tasks) (b) Create MVC4 application to create Facebook Registration form which accepts data only from user whose age is above 18, whose id is proper, user name should be of minimum 5 characters and maximum 15 characters, first name, Last name, , gender should be mandatory fields. If any of these validations fails, application should display appropriate error message. (c) Create an MVC4 application to create Gmail account sign up form in which UserName, FirstName, LastName, Gender and Date of Birth kind of information should be there. Your application should validate first name that first name must contain only one word in it before submitting the information to server, if it violates constraint then appropriate message should be displayed to user. (d) Create a MVC4 basic application which demonstrate the use of JQuery by giving facility of DateTime Picker, Auto complete word and hover effect on image. Objective(s) To be familiar with Model, View, Controller, Database connectivity in MVC4 and validation and data annotations Pre-requisite 3 tire architecture concept (MVC), Model, View and Controller, HTML Helpers and Razor View Engine, Database connectivity Duration for completion 12 hours PEO(s) to be achieved PEO2: To provide quality practical skill of tools and technologies to solve industry problems. PO(s) to be achieved PO6: Ability to use the techniques, skills and modern tools as necessary for software development CO(s) to be achieved CO1: Understand how to use ASP.NET MVC CO2: In-depth knowledge of developing web application with controller handling. CO3: In-depth knowledge of developing web application with model CO4: In-depth knowledge of developing web application with HTML helpers. CO5: Validate web application CO6 & 7: In-depth knowledge of developing web application with JQuery and AJAX CO8: In-depth knowledge of developing web application with routing Solution must contain Source code, Sample test data with output.(code of Controller, View and Model) Draw diagrams where needed. Nature of submission Handwritten References for solving the problem Search on Internet Jon Galloway, Phil Haack, Brad Wilson and K. Scott Allen, professional_asp.net_mvc_4, Wrox Sample Testing data NA Post Laboratory questions 1. What is difference between Html.ValidationSummary and Html.ValidationMessage? 2. How one can define strongly typed html helpers? 3. Distinguish between Html.ActionLink and Html.RoutLink. 4. When should developer use Html.RenderPartial instead of Html.Partial? 5. Which data annotation is used to restrict the length of any field? 6. Name the namespace to use data annotations in MVC4. 7. Which property of data annotation can be used to display user defined error message? 8. How localization of validation can be done in MVC4? Ms. Jigna Solanky, Mr. Kaushal Jani Page 7

8 9. Which class one need to inherit to create custom annotation in MVC4? 10. Which method should override to achieve the concept of custom annotation? 11. Write down step to change the header name of any class field which is to be displayed to user. 12. List 5 JQuery selector. 13. Where one can find JQuery in MVC4 application? 14. How one can change default routing pattern? Assessment Solution achieves the desired objective(s) Out of Marks 10 5 Secured by the student Signature and Date Viva Ms. Jigna Solanky, Mr. Kaushal Jani Page 8

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

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

Introducing Models. Data model: represent classes that iteract with a database. Data models are set of

Introducing Models. Data model: represent classes that iteract with a database. Data models are set of Models 1 Objectives Define and describe models Explain how to create a model Describe how to pass model data from controllers to view Explain how to create strongly typed models Explain the role of the

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

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

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

Understanding ASP.NET MVC Model Binding

Understanding ASP.NET MVC Model Binding Page 1 of 9 Forums Community News Articles Columns Login Forgot Password Register Follow us on twitter Search MaximumASP General Business Directory More Recent Articles» ASP.NET Understanding ASP.NET MVC

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

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 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

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

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

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 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

PROFESSIONAL ASP.NET MVC 4

PROFESSIONAL ASP.NET MVC 4 PROFESSIONAL ASP.NET MVC 4 FOREWORD...............................................................xxvii INTRODUCTION............................................................ xxix CHAPTER 1 Getting Started..................................................1

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

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

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

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

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

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

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

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

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

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

SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET

SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET SOLVING PROBLEMS ON THE TEACHING METHODS OF LINEAR ALGEBRA THROUGH TECHNOLOGY PLATFORM DOT.NET Makpal Iskakova, PhD Yernar Adilbekov, Undergraduate Kazakh National Pedagogical University named after Abai,

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

ASP.NET- Enterprise Applications

ASP.NET- Enterprise Applications COURSE SYLLABUS ASP.NET- Enterprise Applications Industrial Training (3 MONTHS) PH: 0481 2411122, 09495112288 E-Mail: info@faithinfosys.com Marette Tower Near No.1 Pvt. Bus Stand Vazhoor Road Changanacherry-01

More information

Babu Madhav Institute of Information Technology, UTU 2017

Babu Madhav Institute of Information Technology, UTU 2017 Practical No: 1 5 years Integrated M.Sc.(IT) 060010811 Content Management Systems Practical List Write a PHP script to create one variable $department and assign a value BMIIT. Show value of $department

More information

Babu Madhav Institute of Information Technology 2016

Babu Madhav Institute of Information Technology 2016 5 Years Integrated M.Sc. (IT) 5 th Semester Practical Problems 060010503: Advanced Java Practical No : 1 Practical Problem Duration for completion PEO(s) to be PO(s) to be CO(s) to be Solution must contain

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

Practical Problem: Create an Android app that having following layouts.

Practical Problem: Create an Android app that having following layouts. Practical No: 1 Practical Problem: Create an Android app that having following layouts. Objective(s) Duration for completion PEO(s) to be achieved PO(s) to be achieved CO(s) to be achieved Solution must

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You will take the assessment from your desk. Venue mailer will have all the details that you need it for assessment Login Link, Credentials, FAQ

More information

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

Index. Bower, 133, 352 bower.json file, 376 Bundling files, 157 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

More information

Java COURSE CURRICULUM C/C++ JAVA (CORE/ADVANCE/SPRING/STRUTS/HIBERNATE)

Java COURSE CURRICULUM C/C++ JAVA (CORE/ADVANCE/SPRING/STRUTS/HIBERNATE) C/C++ JAVA (CORE/ADVANCE/SPRING/STRUTS/HIBERNATE) MICROSOFT -.NET SHAREPOINT DEVELOPMENT / ADMIN PHP / PHP++ / PHP FRAMEWORK / PYTHON DIGITAL MARKETING / WEB DESIGN / GRAPHIC DESIGN SOFTWARE QUALITY TESTING

More information

Course Syllabus. Course Title. Who should attend? Course Description. ASP.NET ( Level 1 )

Course Syllabus. Course Title. Who should attend? Course Description. ASP.NET ( Level 1 ) Course Title ASP.NET ( Level 1 ) Course Description ASP Stands for Active Server Pages it s the most secure robust server side technology. It s used to create dynamic web applications, ASP.NET is a unified

More information

Alpha College of Engineering and Technology. Question Bank

Alpha College of Engineering and Technology. Question Bank Alpha College of Engineering and Technology Department of Information Technology and Computer Engineering Chapter 1 WEB Technology (2160708) Question Bank 1. Give the full name of the following acronyms.

More information

Assessment Environment - Overview

Assessment Environment - Overview 2011, Cognizant Assessment Environment - Overview Step 1 You have to take up the assessment only using the Virtual Desktop Interface (VDI environment) Please use the URL, https://vdiassessment.cognizant.com

More information

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes

Lecture : 3. Practical : 2. Course Credit. Tutorial : 0. Total : 5. Course Learning Outcomes Course Title Course Code WEB DESIGNING TECHNOLOGIES DCE311 Lecture : 3 Course Credit Practical : Tutorial : 0 Total : 5 Course Learning Outcomes At end of the course, students will be able to: Understand

More information

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science)

Lecture 13. Page Layout. Mr. Mubashir Ali Lecturer (Dept. of Computer Science) Lecture 13 Page Layout Mr. Mubashir Ali Lecturer (Dept. of dr.mubashirali1@gmail.com 1 Summary of the previous lecture Font properties Controlling text with CSS Styling links Styling background Styling

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

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

PROFESSIONAL ASP.NET MVC 5

PROFESSIONAL ASP.NET MVC 5 PROFESSIONAL ASP.NET MVC 5 FOREWORD...................................................... xxvii INTRODUCTION................................................... xxix CHAPTER 1 Getting Started..........................................

More information

COMS 359: Interactive Media

COMS 359: Interactive Media COMS 359: Interactive Media Agenda Project #3 Review Forms (con t) CGI Validation Design Preview Project #3 report Who is your client? What is the project? Project Three action= http://...cgi method=

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

10264A CS: Developing Web Applications with Microsoft Visual Studio 2010

10264A CS: Developing Web Applications with Microsoft Visual Studio 2010 10264A CS: Developing Web Applications with Microsoft Visual Studio 2010 Course Number: 10264A Course Length: 5 Days Course Overview In this course, students will learn to develop advanced ASP.NET MVC

More information

PROFESSIONAL ASP.NET MVC 3

PROFESSIONAL ASP.NET MVC 3 PROFESSIONAL ASP.NET MVC 3 FOREWORD............................................................... xxiii INTRODUCTION............................................................ xxv CHAPTER 1 Getting Started..................................................1

More information

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1

CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 FOREWORD INTRODUCTION xxv xxvii CHAPTER 1: GETTING STARTED WITH ASP.NET 4 1 Microsoft Visual Web Developer 2 Getting Visual Web Developer 3 Installing Visual Web Developer Express 3 Creating Your First

More information

MVC 4 Setup and Configuration Training Document. Prepared by Andre Masters. Rev 1.0

MVC 4 Setup and Configuration Training Document. Prepared by Andre Masters. Rev 1.0 MVC 4 Setup and Configuration Training Document Prepared by Andre Masters Rev 1.0 1 Contents Preliminary Background... 2 Procedure Steps... 3 Next Steps... 13 Preliminary Background This procedure covers

More information

SOFTRONIICS Call:

SOFTRONIICS Call: Microsoft ASP.NET Programming Certification - Syllabus Section I - The Interface of Microsoft ASP.NET What Is ASP.NET, and Why Is It So Great? Understanding Web Servers and Browsers Understanding Static

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

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements Last Modified: January 5, 2018 The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction

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

DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1

DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1 DE-2310 Developing Web Applications Using Microsoft Visual Studio 2008 SP1 Summary Duration 5 Days Audience Developers Level 100 Technology Microsoft Visual Studio 2008 Delivery Method Instructor-led (Classroom)

More information

Microsoft Programming in HTML5 with JavaScript and CSS3

Microsoft Programming in HTML5 with JavaScript and CSS3 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20480 - Programming in HTML5 with JavaScript and CSS3 Length 5 days Price $4510.00 (inc GST) Version B Overview This course provides an introduction to HTML5,

More information

Get in Touch Module 1 - Core PHP XHTML

Get in Touch Module 1 - Core PHP XHTML PHP/MYSQL (Basic + Advanced) Web Technologies Module 1 - Core PHP XHTML What is HTML? Use of HTML. Difference between HTML, XHTML and DHTML. Basic HTML tags. Creating Forms with HTML. Understanding Web

More information

Web Designing Course

Web Designing Course Web Designing Course Course Summary: HTML, CSS, JavaScript, jquery, Bootstrap, GIMP Tool Course Duration: Approx. 30 hrs. Pre-requisites: Familiarity with any of the coding languages like C/C++, Java etc.

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

UNIVERSITY OF THE PACIFIC COURSE ApPROVAL FORM REVISION. Revised catalog description (attach additional sheet if necessary).

UNIVERSITY OF THE PACIFIC COURSE ApPROVAL FORM REVISION. Revised catalog description (attach additional sheet if necessary). UNIVERSITY OF THE PACIFIC COURSE ApPROVAL FORM REVISION \...J. Please fill in all information. Required signatures are on page 2 of this form. Please return to: Academic Affairs Committee, Office of the

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

Accounting & MIS 3610

Accounting & MIS 3610 Accounting & MIS 3610 Foundations of Business Information Systems The Ohio State University Spring Semester 2016 Instructor- Email - Jeff Gabriel gabriel.19@osu.edu Office- Fisher Hall Room 052 Office

More information

Course 20480: Programming in HTML5 with JavaScript and CSS3

Course 20480: Programming in HTML5 with JavaScript and CSS3 Course 20480: Programming in HTML5 with JavaScript and CSS3 Overview About this course This course provides an introduction to HTML5, CSS3, and JavaScript. This course helps students gain basic HTML5/CSS3/JavaScript

More information

COURSE 20480B: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3

COURSE 20480B: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3 ABOUT THIS COURSE This course provides an introduction to HTML5, CSS3, and JavaScript. This course helps students gain basic HTML5/CSS3/JavaScript programming skills. This course is an entry point into

More information

Kendo UI Builder by Progress : Using Kendo UI Designer

Kendo UI Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Notices 2016 Telerik AD. All rights reserved. November 2016 Last updated with new content: Version 1.1 3 Notices 4 Contents Table of Contents Chapter

More information

All Applications Release Bulletin January 2010

All Applications Release Bulletin January 2010 All Applications Release Bulletin January 2010 In this bulletin... Online Enrollment: HTML Forms for Contracts 2 System Administration: MBP Online User Accounts 11 About Release 91_6 This release includes

More information

SDMS TRAINING MANUAL FOR TRAINING PARTNERS

SDMS TRAINING MANUAL FOR TRAINING PARTNERS SDMS TRAINING MANUAL FOR TRAINING PARTNERS Table of Contents Table of Contents Document History... Error! Bookmark not defined. Logging in to SDMS Portal (Partner Login)... 3 Creating Trainers... 6 Creating

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction

COPYRIGHTED MATERIAL. Contents. Chapter 1: Introducing Microsoft Expression Web 1. Chapter 2: Building a Web Page 21. Acknowledgments Introduction Acknowledgments Introduction Chapter 1: Introducing Microsoft Expression Web 1 Familiarizing Yourself with the Interface 2 The Menu Bar 5 The Development Window 7 The Development Area 8 The Tabbed File

More information

User Manual Appointment System

User Manual Appointment System User Manual Appointment System Page 1 of 17 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 System Overview... 3 Menu Options... 3 Application Access... 3 Patient Registration... 6 Schedule Appointment...

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

Programming in HTML5 with JavaScript and CSS3

Programming in HTML5 with JavaScript and CSS3 Programming in HTML5 with JavaScript and CSS3 20480B; 5 days, Instructor-led Course Description This course provides an introduction to HTML5, CSS3, and JavaScript. This course helps students gain basic

More information

DE Introduction to Web Development with Microsoft Visual Studio 2010

DE Introduction to Web Development with Microsoft Visual Studio 2010 DE-10267 Introduction to Web Development with Microsoft Visual Studio 2010 Summary Duration 5 Days Audience Developers Level 100 Technology Microsoft Visual Studio 2010 Delivery Method Instructor-led (Classroom)

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

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0

USER MANUAL. SuiteCRM Customer Portal for Joomla TABLE OF CONTENTS. Version: 2.0 USER MANUAL TABLE OF CONTENTS Introduction... 1 Benefits of Customer Portal... 1 Prerequisites... 1 Installation... 2 SuiteCRM Plug-in Installation... 2 Joomla Manual Plug-in installation... 3 Plug-in

More information

CS Exam 1 Review Suggestions - Spring 2017

CS Exam 1 Review Suggestions - Spring 2017 CS 328 - Exam 1 Review Suggestions p. 1 CS 328 - Exam 1 Review Suggestions - Spring 2017 last modified: 2017-02-16 You are responsible for material covered in class sessions and homeworks; but, here's

More information

GUJARAT TECHNOLOGICAL UNIVERSITY

GUJARAT TECHNOLOGICAL UNIVERSITY 1. Learning Objectives: To be able to understand the process of developing software for the mobile To be able to create mobile applications on the Android Platform To be able to create mobile applications

More information

Level: M.Ed. Credit Hour: 3 (2+1) Semester: Third Teaching Hour: 80(32+48)

Level: M.Ed. Credit Hour: 3 (2+1) Semester: Third Teaching Hour: 80(32+48) Course Title: Visual Programming Course No. : ICT Ed 535 161 Nature of course: Theoretical + Practical Level: M.Ed. Credit Hour: 3 (2+1) Semester: Third Teaching Hour: 80(32+48) 1. Course Description This

More information

Babu Madhav Institute of Information Technology, UTU

Babu Madhav Institute of Information Technology, UTU 5 Years Integrated M.Sc. (IT) 7 th Semester Practical List 060010710: Java Framework Practical No : 1 Enrollment No: Practical 1. Develop a web application called Student Information Problem System(SIS)

More information

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A)

Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Introduction to Web Development with Microsoft Visual Studio 2010 (10267A) Overview This five-day instructor-led course provides knowledge and skills on developing Web applications by using Microsoft Visual

More information

Syllabus of Dont net C#

Syllabus of Dont net C# Syllabus of Dont net C# 1. What is.net? 2. Why do we require Framework/IDE 3. Fundamentals of.net Framework 4..Net Architecture 5. How to create first Console application 6. Statements, Expressions, operators

More information

Developing Web Applications Using Microsoft Visual Studio 2008 SP1

Developing Web Applications Using Microsoft Visual Studio 2008 SP1 Developing Web s Using Microsoft Visual Studio 2008 SP1 Introduction This five day instructor led course provides knowledge and skills on developing Web applications by using Microsoft Visual Studio 2008

More information

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning

Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Course Outline: Course 10267A: Introduction to Web Development with Microsoft Visual Studio 2010 Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: This five-day

More information

GRAPHIC WEB DESIGNER PROGRAM

GRAPHIC WEB DESIGNER PROGRAM NH128 HTML Level 1 24 Total Hours COURSE TITLE: HTML Level 1 COURSE OVERVIEW: This course introduces web designers to the nuts and bolts of HTML (HyperText Markup Language), the programming language used

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATION TECHNOLOGY TUTORIAL QUESTION BANK Course Name Course Code Class Branch : Web Technologies : ACS006 : B. Tech

More information

connected New User Guide

connected New User Guide connected New User Guide This guide will walk you through how to accomplish the following for programs launched through the McGraw-Hill connected website: Create a Teacher Account Redeem Content Create

More information

JavaScript Programming

JavaScript Programming JavaScript Programming Course ISI-1337B - 5 Days - Instructor-led, Hands on Introduction Today, JavaScript is used in almost 90% of all websites, including the most heavilytrafficked sites like Google,

More information

USER MANUAL FOR PUC ONLINE PORTAL

USER MANUAL FOR PUC ONLINE PORTAL USER MANUAL FOR PUC ONLINE PORTAL Page 1 of 36 Content SL No User Manual Type Page No 1 College Registration 3-7 2 Login Detail 8-9 3 Student New Enrolment 10 4 Filling the Application form for 1 st PU

More information

P a g e 1. Danish Tecnological Institute. Developer Collection Online Course k Developer Collection

P a g e 1. Danish Tecnological Institute. Developer Collection   Online Course k Developer Collection P a g e 1 Online Course k72809 P a g e 2 Title Estimated Duration (hrs) Adobe Acrobat Pro XI Fundamentals 1 Introduction to CQRS 2 Introduction to Eclipse 2 NHibernate Essentials 2 Advanced Scrum: Addressing

More information

COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3

COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3 COURSE OUTLINE MOC 20480: PROGRAMMING IN HTML5 WITH JAVASCRIPT AND CSS3 MODULE 1: OVERVIEW OF HTML AND CSS This module provides an overview of HTML and CSS, and describes how to use Visual Studio 2012

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

20480B: Programming in HTML5 with JavaScript and CSS3

20480B: Programming in HTML5 with JavaScript and CSS3 20480B: Programming in HTML5 with JavaScript and CSS3 Course Details Course Code: Duration: Notes: 20480B 5 days This course syllabus should be used to determine whether the course is appropriate for the

More information

TABLE OF CONTENTS. Document: SDF Training Manual Client: CATHSSETA Rev Date: February 2017 Page 2

TABLE OF CONTENTS. Document: SDF Training Manual Client: CATHSSETA Rev Date: February 2017 Page 2 Mandatory Grant Application Manual 2017 TABLE OF CONTENTS 1 INTRODUCTION...4 1.1 Purpose of this Document... 4 1.2 Scope of the Document... 4 2 INDICIUM ACCESS...4 2.1 Website... 4 2.2 Technical Information...

More information

COURSE SYLLABUS. .NET-Technologies. Industrial Training (4 MONTHS) PH: , Vazhoor Road Changanacherry-01.

COURSE SYLLABUS. .NET-Technologies. Industrial Training (4 MONTHS) PH: , Vazhoor Road Changanacherry-01. COURSE SYLLABUS.NET-Technologies Industrial Training (4 MONTHS) PH: 0481 2411122, 09495112288 E-Mail: info@faithinfosys.com www.faithinfosys.com Marette Tower Near No. 1 Pvt. Bus Stand Vazhoor Road Changanacherry-01

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR ASP.NET PROGRAMMING CIS1865 3 Credit Hours Student Level: This course is open to students on the college level in either the Freshman

More information

Table of Contents Step One: Create a new account... 2 Step Two: Log-in to Inspira... 5 Step Three: Sign up for mandatory courses...

Table of Contents Step One: Create a new account... 2 Step Two: Log-in to Inspira... 5 Step Three: Sign up for mandatory courses... You can now access Inspira mandatory courses through elearning.un.org!!!! In this quick guide you will learn how to register and find mandatory courses on Inspira. If you are new to learning, please start

More information

Assignment front sheet

Assignment front sheet Assignment front sheet Qualification Unit number and title Pearson BTEC Higher Nationals in Computing and Systems Development Unit 42: Programming in.net Student name Assessor name Dr Derek Peacock Date

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

MVC CRUD. Tables: 1) Dinners (First Table)

MVC CRUD. Tables: 1) Dinners (First Table) Tables: First create one database and name it NerdDinner. Now run following code to generate tables or create by your own if you know how to create and give relationship between two tables. 1) Dinners

More information