
Untitled
By: a guest on
Apr 23rd, 2012 | syntax:
Java | size: 2.05 KB | hits: 17 | expires: Never
<%@page import="com.pack.speech.SpeakText"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="refresh" content="8; URL=http://localhost:8080/Talktive_speech/QuestionServlet">
<title>Insert title here</title>
<style>
body
{
background: url('http://www.dvd-ppt-slideshow.com/images/ppt-background/background-3.jpg') no-repeat;
background-size: 100% 100%;
}
</style>
</head>
<body>
<br/>
<br/>
<br/>
<br/>
<form action="QuestionServlet" id="1">
<Table align="center">
<tr>
<td colspan=2><textarea rows=3 cols=35 readonly><%=session.getAttribute("text") %></textarea></td>
</tr>
<tr>
<td colspan=1><textarea rows=1 cols=35 readonly><%=session.getAttribute("opt1") %></textarea></td>
</tr>
<tr>
<td colspan=1><textarea rows=1 cols=35 readonly><%=session.getAttribute("opt2") %></textarea></td>
</tr>
<tr>
<td colspan=1><textarea rows=1 cols=35 readonly><%=session.getAttribute("opt3") %></textarea></td>
</tr>
<tr>
<td colspan=1><textarea rows=1 cols=35 readonly><%=session.getAttribute("opt4") %></textarea></td>
</tr>
<tr>
<td colspan=1><input type="text">
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="opt3" value="OK" align="middle"/></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" name="opt3" value="SKIP" align="middle"/></td>
</tr>
</Table>
</form>
<!-- <script type="text/javascript">
document.FrmUser.Submit();
</script> -->
</body>
<%
SpeakText st= new SpeakText();
st.doSpeak((String)session.getAttribute("text"));
st.doSpeak((String)session.getAttribute("opt1"));
st.doSpeak((String)session.getAttribute("opt2"));
st.doSpeak((String)session.getAttribute("opt3"));
st.doSpeak((String)session.getAttribute("opt4"));
//st=null;
%>
</html>