↧
Re: Building an online survey with MVC
You can build your table for Questions in database as Question(id, questiontext)Now in your model folder, you can create a model for this table (i.e. a class with 2 properties, ID and Text). Each...
View ArticleBuilding an online survey with MVC
I am trying to figure out the basic structure for an online survey, using the MVC architecture. In order to user the html helpers in the view, it seems I would need to build the db in such a way, that...
View Article