I am new on asp.net mvc 4.
I have 2 tables, header and line table. The header table stores a question and the line table stores the answer. In this survey application, the User will enter the questions and after that will enter the asnwers. The User can add multiple answers and before submitting he can delete some of them.
What is the best way to do this, jquery,javascripts...
I couldn't find the best way.
My view will be as below...
<div id="mysurvey">
<div id="myquestion">
-- in this section , there will be an image, and a text area
</div>
<div id="answers">
<div id="answer1">
-- in this section , there will be an image, and a text area
</div>
<div id="answer2">
-- in this section , there will be an image, and a text area
</div>
<div id="answer3">
-- in this section , there will be an image, and a text area
</div>
</div>
</div>