branching and skip logic
-
I have a question survey that I need to add branching and skip logic based on how a question is answered. I need for this to be dynamic because a user can setup their own questions and determine the flow of the questions. Any suggestions or references on how start this? Is this a rule based engine?
-
I have a question survey that I need to add branching and skip logic based on how a question is answered. I need for this to be dynamic because a user can setup their own questions and determine the flow of the questions. Any suggestions or references on how start this? Is this a rule based engine?
Sounds like you need to define a file format where questions are defined, and answers and question flow is marked. XML would be perfect for this.
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
I have a question survey that I need to add branching and skip logic based on how a question is answered. I need for this to be dynamic because a user can setup their own questions and determine the flow of the questions. Any suggestions or references on how start this? Is this a rule based engine?
Maybe use a decision table or tree? I agree with Christian. XML would be a good tool here.