chapter 9 asp.net web formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with asp.net core...

20
Chapter 9 ASP.NET Web Form

Upload: others

Post on 22-May-2020

31 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Chapter 9ASP.NET Web Form

Page 2: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

ใช้ Monodevelop หรือ Visual Studio

Page 3: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Default.aspx

เอาออก

Page 4: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Default.aspx.cs

เพิม่อตัราภาษีใน dropdownlist

Error ใช้ข้อความสีแดง

Error ใช้ข้อความสีแดง

ข้อมลูถกูต้องใช้ข้อความสีน า้เงิน

Page 5: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Default.aspx.design.cs

Page 6: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Build & Run

Page 7: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

ASP.NET

MVC

Page 8: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

MVC

Page 9: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

MVC

Page 10: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Routing a request to a controller & Binding model

Page 11: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

Action invoking an appropriate method

Controller / Action / Param1 / Param2 (โปรแกรมได้)

Page 12: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

View model

Page 13: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

A complete MVC request

Page 14: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/start-mvc?view=aspnetcore-3.0&tabs=visual-studio

Page 15: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views
Page 16: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

https://code.visualstudio.com/

Page 17: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

dotnet new mvc

dotnet restore

Page 18: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

code .

Page 19: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

dotnet build

Page 20: Chapter 9 ASP.NET Web Formpioneer.netserv.chula.ac.th/~achatcha/2301466/09.pdf · with ASP.NET Core This tutorial teaches ASP.NET Core MVC web development with controllers and views

dotnet run