loadrunner安装指南
{
String s=str;
try{
bytetempB[]=s.getBytes("ISO-8859-1");
s=new String(tempB);
return s;
}
catch(Exception e)
{
return s;
}
} %>
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP '123.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<form name="form1" action="123.jsp" method="post" onsubmit="return on_submit()"> 用户名:
<input type="text" name="username">
密码:
<input type="password" name="userpassword">
<input type="submit" name="submit" value="提交">
</form>
<br>
<%out.println("你输入的账户为:"+codeToString(request.getParameter("username")));