I am new to both Web development and asp.net mvc and i am trying to create a blog as my first project.
Now as is the norm that in blogs every post has its own page(sort of like stackoverflow having a new page for each question). But i am having a hard time comprehending that how i am going to achieve this.
Because for example every new page must have its own view and its own action method. Now suppose if there are 1000 blogposts that would that mean 1000 views and 1000 actions in the controller being created dynamically.
Surely there must be some other way. A little guidance in this matter would help alot.