33 lines
530 B
Plaintext
33 lines
530 B
Plaintext
<%@ page language="java" contentType="text/html; charset=utf-8" %>
|
|
<%@ page import="com.weaver.formmodel.mobile.security.SecurityUtil" %>
|
|
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
|
|
<%
|
|
int sum = 0;
|
|
|
|
String test1 = "fda227e7656b4ea7937a8d5890adb4ff";
|
|
test1 = SecurityUtil.decrypt(test1);
|
|
System.out.println("test1:"+test1);
|
|
|
|
sum++;
|
|
|
|
|
|
%>
|
|
|
|
<%!
|
|
|
|
|
|
|
|
%>
|
|
|
|
<HEAD>
|
|
</HEAD>
|
|
<BODY>
|
|
|
|
<h1>Congratulation Mode 666666 !</h1>
|
|
|
|
<h1> test1 <%=test1%> </h1>
|
|
|
|
<h1> sum <%=sum%> </h1>
|
|
|
|
</BODY>
|