1
see these links if you get some idea.
https://forums.asp.net/t/2016395.aspx?Dynamic+Questionnaire+in+ASP+Net+MVC+4+0
https://www.codeproject.com/Articles/584161/Survey-Web-App-Using-ASP-NET-MVC-Entity-Framewor
https://www.codeproject.com/Articles/486564/ASP-NET-Simple-Survey-Application
http://stackoverflow.com/a/21930525/728750
https://www.twilio.com/docs/tutorials/walkthrough/automated-survey/csharp/mvc
http://highoncoding.com/Articles/645_Creating_Multiple_Choice_Exam_Application_Using_ASP_NET_MVC_Framework.aspx
http://ngalatalla.blogspot.in/2011/11/building-dynamic-quiz-application-in.html
http://20fingers2brains.blogspot.com/2013/05/simple-dynamic-quiz-in-aspnet-mvc3-razor.html
0
sir here is the sample of image.
i am using this coding but not working.
- @foreach (var item in Model.ParentList)
- {
- <div class="tab-pane active" id="tab1">
-
- @foreach (var items in Model.ParentList)
- {
- <div class="row">
-
- <div class="form-group">
-
- <div class="col-md-12">
-
- <label>@items.QuestionText</label>
-
- @foreach (var ch in Model.ChildList)
- {
- if (items.QuestionId == ch.QuestionId)
- {
- string id = @ch.QuestionId + "_" + @ch.AnswerId;
-
- <div class="icheck-list">
- <label class="icheck-list" id="@ch.AnswerId">
-
- <input name="@ch.QuestionId" onclick="handlesClick(this);" id="@id" type="radio">@ch.AnswerText
- <span></span>
- </label>
0
http://www.c-sharpcorner.com/forums/how-do-i-bind-4-tab-in-a-loop
0
Hi Manoj,
Can you share some sample images for that?