请问如下代码是什么意思?

<%
String tpri=(String)session.getAttribute("tpri");
int type = Integer.parseInt(tpri, 10);
if(type!=1)
{
response.sendRedirect("err.htm");
}
%>
是什么意思啊!

jeck猫
浏览 109回答 2
2回答

GCT1015

<%String tpri=(String)session.getAttribute("tpri"); //获取tpri的值,转换成字符型,赋值给tpriint type = Integer.parseInt(tpri, 10); //将10赋值给tpri,并转换成整型,再赋值给typeif(type!=1) //如果type不等于1{response.sendRedirect("err.htm"); //转到页面err.htm}%>

万千封印

如果tpri的数值不是1,则跳转到err页面
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript