...
Code Block | ||||
---|---|---|---|---|
| ||||
//index.jsp code example
<%@include file="include_questionnaire.jsp"%>
<%
/**
To use this type of survey, rename this file from "index2.jsp" to "index.jsp". (The default "index.jsp" automatically moves pages around).
Then, you'll be able to control each page, its details, and where it goes next all in the JSP code in here and on "page1.jsp", etc.
d
**/
%>
<survey:surveypage
pageName="Login"
nextPage="randomMeasure.jsp"
submitButtonText="Start Survey"
showSubmitButton="true"
percentQuestion="60"
rememberPageUserIsOn="true"
retrieveValuesFromDB="false"
createUsersAtLogin="true"
isLoginPage="true"
/>
%@include file="survey_end.jsp"%
|
...