<c:forEach items="${list}" var="info" varStatus="childStatus">
    <tr>
      <td><c:out value="${childStatus.count}"/></td>
      <td width="85">${info[0] }</td>
      <td><input name="textfield" type="text" value="${info[1] }" size="15" readonly="true"></td>
      <td>${info[2] }</td>
      <td>${info[3] }</td>
      <td>${info[4] }/${info[5] }</td>
      <td width="200"><%
       KeFuDaoImpl keFuDaoImpl=new KeFuDaoImpl();
       keFuDaoImpl.getQuestionf(需要传参数);
      
       %></td>
      <td><textarea name="yezhuRe" id="yezhuRe"></textarea></td>
      <td width="200">${info[6] }/${info[7] }</td>
      <td>gg</td>
      <td><textarea name="kefuRe" id="kefuRe"></textarea></td>
      <td>${info[8] }</td>
      <td>${info[9] }</td>
      <td>${info[10] }</td>
      <td width="150">${info[11] }</td>
      <td width="45"><a href="../keFu.do?yezhuRe=1&kefuRe=2&contractno=5" class="STYLE5" style="text-decoration: none">提交</a></td>
    </tr>
    </c:forEach>
怎么样把${info[1]}作为参数传入keFuDaoImpl.getQuestionf(需要传参数)---红色部分