saavi
saavi

Reputation: 1

How to create code behind class file in asp.net mvc?

I want to create index.aspx.cs file in mvc like you do in asp.net.

Can anybody tell me the process for this?

Upvotes: 0

Views: 407

Answers (1)

Arnis Lapsa
Arnis Lapsa

Reputation: 47567

You do not create code behind classes for asp.net mvc views. Use controllers instead.

Upvotes: 5

Related Questions