C# and ASP.NET Programming

Slides:



Advertisements
Similar presentations
CSIS 3470 Application Development Get the tentative syllabus (front). Complete Information Sheet (end of syllabus). Read syllabus and identify: –One thing.
Advertisements

Object Oriented Software Development 1. Introduction to C# and Visual Studio.
Microsoft Visual Basic 2005 CHAPTER 1 Introduction to Visual Basic 2005 Programming.
C# A 1 CSC 298 Introduction to C#. C# A 2 What to expect in this class  Background: knowledge of an object oriented language of the C++, Java, … family.
Lecture Set 1 Part B: Understanding Visual Studio and.NET – Structure and Terminology 1/16/ :04 PM.
CSC 494/594 C# and ASP.NET Programming. C# 2012 C# Object-oriented language with syntax that is similar to Java.
Neal Stublen Class Objectives  Develop an understanding of the.NET Framework  Gain proficiency using Visual Studio  Begin learning.
Lecture 1 Programming in C# Introducing C# Writing a C# Program.
NOTE: To change the image on this slide, select the picture and delete it. Then click the Pictures icon in the placeholder to insert your own image. WEB.
CIS 451: ASP.NET Concepts Dr. Ralph D. Westfall January, 2009.
Web Development in Microsoft Visual Studio 2013 / 2015.
INTRODUCTION CHAPTER #1 Visual Basic.NET. VB.Net General features It is an object oriented language  In the past VB had objects but focus was not placed.
Lecture Set 1 Part B: Understanding Visual Studio and.NET – Structure and Terminology 1/16/ :04 PM.
Murach's C# 2012, C2© 2013, Mike Murach & Associates, Inc. Slide 1.
Murach's ASP.NET 4.5/C#, C3© 2013, Mike Murach & Associates, Inc.Slide 1.
Based On Murach’s slides
© 2016, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
Introduction to Visual Basic 2008 Programming
© 2016, Mike Murach & Associates, Inc.
CE-105 Spring 2007 Engr. Faisal ur Rehman
© 2010, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
Module 0: Introduction Chapter 2: Getting Started
Module 1: Getting Started
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2003, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2003, Mike Murach & Associates, Inc.
© 2016, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
Advanced Programming: C# Lecture 01: Introduction
© 2011, Mike Murach & Associates, Inc.
CIS16 Application Development – Programming with Visual Basic
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2011, Mike Murach & Associates, Inc.
© 2013, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
Introducing the .NET Framework
Creating Your First C Program Using Visual Studio 2010
Creating Your First C Program Using Visual Studio 2010
© 2006, Mike Murach & Associates, Inc.
Chapter Two Visual Basic.Net.
© 2016, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2010, Mike Murach & Associates, Inc.
© 2003, Mike Murach & Associates, Inc.
IS 135 Business Programming
Murach's JavaScript and jQuery (3rd Ed.)
Presentation transcript:

C# and ASP.NET Programming CSC 494/594 C# and ASP.NET Programming

C# 2015

C# Object-oriented language with syntax that is similar to Java

C# 2015 Section 1 Section 2 Section 3 An Introduction to Visual Studio Section 2 C# language essentials Section 3 OOP We will cover Chapters 1-12 (out of 26)

ASP.NET 4.6 web programming with C# 2015

ASP.NET web programming with C# 2015 We will cover Chapters 1-11? (out of 24 Chapters)

Visual Studio 2019 Azure Dev Tools View.nku.edu

Download Files www.Murach.com All applications presented in this book FREE Downloads All applications presented in this book The starting point for all of the exercises The solutions of all of the exercises The database and files that are used by the applications and exercises

© 2013, Mike Murach & Associates, Inc. Murach's C# 2012, C1 © 2013, Mike Murach & Associates, Inc.

© 2013, Mike Murach & Associates, Inc. Murach's C# 2012, C1 © 2013, Mike Murach & Associates, Inc.

Common types of .NET applications Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. The .NET Framework Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. The Visual Studio IDE Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

How a C# application is compiled and run Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

Operation Programmer uses Visual Studio to create a project of C# files C# compiler translates C# source code to Microsoft Intermediate Language (MSIL or just IL) stored in an assembly (.exe file) The assembly is run by the .NET Framework’s Common Language Runtime (CLR)

The Visual Studio Start Page Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

Visual C# Development Settings “Note the first time you start Visual Studio, you’ll be asked to select the default environment settings. Then, you can choose Visual C# Development Settings…”

The Open Project dialog box Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

Project and solution concepts Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

The Form Designer window of Visual Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

The Code Editor window of Visual Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. The Solution Explorer Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. Project files Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. Project files (cont.) Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

Two floating windows, a hidden window, and a pinned window Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

How to rearrange windows Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

How to rearrange windows (cont.) Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

© 2016, Mike Murach & Associates, Inc. The form that’s displayed when the Financial Calculations project is run Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.

How to build a project without running it Murach's C# 2015 © 2016, Mike Murach & Associates, Inc.