Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Bài giảng Lập trình web: Models - Nguyễn Hà Giang
Đang chuẩn bị liên kết để tải về tài liệu:
Bài giảng Lập trình web: Models - Nguyễn Hà Giang
Quỳnh Hoa
63
46
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
The goals of this chapter are: 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 model binder, explain how to use scaffolding in Visual Studio.NET. | Models Nguyen Ha Giang 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 model binder Explain how to use scaffolding in Visual Studio.NET 2 Introducing Models A model is class containing properties that represents data of an app A model represents data associated with the app ASP.NET MVC Framework is based on the MVC pattern The MVC pattern defines the following three types of models, where each model has specific purpose: Data model: represent classes that iteract with a database. Data models are set of classes that can either follow the database-first approach or code-first app Business model: represent classes that implement a functionality that represents business logic of an application View model: Represent classes that provide information passed between controllers and views 3 Creating a Model To create a model in an ASP.NET app, you need to: Create a public class Declare public properties for each information that the model represents 4 Accessing a Model within a Controller In an ASP.NET MVC app when a user request for some information, the request is received by an action method. The action method is used to access the model storing the data. To access the model, you need to create an object of the model class and either retrieve or set the property values of the object 5 Passing model data from C to V 1/6 Once you have accessed the model within a controller, you need to make the model data accessible to a view so that the view can display the data to the user. To do this, you need to pass the model object to the view while invoking the view You can model the object as follow: A single object A collection of model objects 6 Passing model data from C to V 2/6 In an action method, you can create a model object and the pass the object to a view by using the ViewBag object. In this code, an object of the User model . | Models Nguyen Ha Giang 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 model binder Explain how to use scaffolding in Visual Studio.NET 2 Introducing Models A model is class containing properties that represents data of an app A model represents data associated with the app ASP.NET MVC Framework is based on the MVC pattern The MVC pattern defines the following three types of models, where each model has specific purpose: Data model: represent classes that iteract with a database. Data models are set of classes that can either follow the database-first approach or code-first app Business model: represent classes that implement a functionality that represents business logic of an application View model: Represent classes that provide information passed between controllers and views 3 Creating a Model To create a model in an ASP.NET app, you .
TÀI LIỆU LIÊN QUAN
Bài giảng Lập trình ứng dụng Web - Chương 6: Lập trình Web với các công nghệ phổ biến
Bài giảng Lập trình web - Bài 1: Tổng quan về lập trình web
Bài giảng Lập trình web ASP.NET: Chương 1 - TS. Vũ Đức Lung, KS. Phan Hữu Tiếp
Bài giảng Lập trình Web hướng Java: Bài 04 - ThS. Trịnh Tuấn Đạt
Bài giảng Lập trình Web ASP.Net: Chương 7 - Dương Thành Phết
Bài giảng môn Lập trình mạng – Chương 5a: Lập trình Web chạy ở server
Bài giảng Lập trình Web: Chương 1 - Ths. Trần Phi Hảo
Bài giảng Lập trình web động với PHP/MySQL: Phần 1 - Tống Phước Khải (tổng hợp & biên dịch)
Bài giảng Lập trình web động với PHP/MySQL: Phần 1 - Tống Phước Khải (tổng hợp & biên dịch)
Bài giảng Lập trình web ASP.NET: Chương 7 - TS. Vũ Đức Lung, KS. Phan Hữu Tiếp
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.