主题:[原创]response的功能为什么实现不了?
<%
boolean a=true;
String str=null;
str=request.getParameter("tf");
if(str==null)
str="";
byte b[]=str.getBytes("ISO-8859-1");
str=new String(b);
if(str.equals(""))
a=false;
else
{
%>
<script>
alert("welcome");
</script>
<%
out.print(str);
}
if(a=false)
response.sendRedirect("http://localhost:8080/try.jsp");
%>
response的功能为什么实现不了?
boolean a=true;
String str=null;
str=request.getParameter("tf");
if(str==null)
str="";
byte b[]=str.getBytes("ISO-8859-1");
str=new String(b);
if(str.equals(""))
a=false;
else
{
%>
<script>
alert("welcome");
</script>
<%
out.print(str);
}
if(a=false)
response.sendRedirect("http://localhost:8080/try.jsp");
%>
response的功能为什么实现不了?