[求助]提示我语句未结束(LINE 28)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<%
name1=Array("靠左","居中","靠右")
str="文字"
name2=Array("left","middle","right")
n=ubound(name1)
for i=0 to n
if request("btn"&i)=name1(i) then
response.write "<font align="&name2(i)&">"&str&"</font>"
end if
next
%>
<form action="c10_7_4.asp" method="post">
<%
for i=0 to n
response.write "<input type=submit name=btn"&i&" value="name1(i)&">"
next
%>
</form>
</body>
</html>