You are on page 1of 2

ASP.

NET MVC Today Sessions

1. Controller
- Managing controllers
2. Model
- Managing Models
3. View
- Loosely coupled Views
- Strong coupled Views
- Partial Views
4. Attributes
- HttpGet
- HttpPost
- ActionName
5. Routing
- Routing Management
- Validating inputs
6. Passing Data from Controller to Views
- ViewBag
- ViewData
7. Passing Data from Controller to another Controller
- TempData
8. Master Page Concepts
- Layout File
- _ViewStart File

USE [Demo3]
GO
/****** Object: Table [dbo].[tblProfile]

Script Date: 7/25/2015 8:32:56 AM ******/

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[tblProfile](
[id] [int] IDENTITY(1,1) NOT NULL,
[firstname] [varchar](50) NULL,
[lastname] [varchar](50) NULL,
[address] [varchar](200) NULL,
[city] [varchar](50) NULL,
[postalcode] [varchar](10) NULL,
CONSTRAINT [PK_tblProfile] PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF,
ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_PADDING OFF
GO

You might also like