...
Code Block | ||||
---|---|---|---|---|
| ||||
<%@include file="include_questionnaire.jsp"%>
<% /** random.jsp will randomize pages 1-3 **/
if (redirectRandomOrderTo("Users", "RandomPageOrder", new String[]{"page1.jsp", "page2.jsp", "page3.jsp", " })) {
} else {
redirectTo("randomMeasure.jsp");
}
%>
<%@include file="survey_end.jsp"%>
|
Code Block | ||||
---|---|---|---|---|
| ||||
<%@include file="include_questionnaire.jsp"%> <% /** random1.jsp will randomize pages 4-6 **/ if (redirectRandomOrderTo("Users", "RandomPageOrder1", new String[]{"page4.jsp", "page5.jsp", "page6.jsp", " })) { } else { redirectTo("randomMeasure.jsp"); } %> <%@include file="survey_end.jsp"%> |
Code Block | ||||
---|---|---|---|---|
| ||||
<%@include file="include_questionnaire.jsp"%> <% /** random2.jsp will randomize pages 7-9 **/ if (redirectRandomOrderTo("Users", "RandomPageOrder2", new String[]{"page7.jsp", "page8.jsp", "page9.jsp", " })) { } else { redirectTo("randomMeasure.jsp"); } %> <%@include file="survey_end.jsp"%> |
...