%@ page contentType="text/html; charset=gb2312" %>
<%@ page import="java.util.Collection" %>
<%@ page import="java.util.Iterator" %>
<%@ page import="com.core.*" %>
<%@ page import="com.model.User" %>
<%@ page import="com.model.Question" %>
明日科技
|
|
|
| 常见问题 |
<%
StringUtils su=new StringUtils();
BasetableFactory bf=BasetableFactory.getInstance();
Collection coll=bf.ListQuestion("ORDER BY qid");
if(coll==null||coll.size()<=0){%>
| 当前常见问题为空 |
<%
}else{ Iterator it=coll.iterator();
while(it.hasNext()){Question a=(Question)it.next();%>
| Q:<%=a.getQuestion()%> |
| A:<%=su.escapeHTMLTags(a.getAnswer())%> |
<%}%>
<%}%>
|
| |
|