<%
String contextPath = request.getContextPath();
String query = request.getQueryString();
String projectId = request.getParameter("projectId");
String msg = request.getParameter("msg");
if (msg == null) msg = "";
String requestUrl = null;
if (query != null && query.indexOf("requestUri=") != -1) {
requestUrl = query.substring(query.indexOf("requestUri=") + 11);
}
if (requestUrl != null) {
int index = requestUrl.indexOf('&');
if (index > -1) {
requestUrl = requestUrl.substring(0, index)+'?'+requestUrl.substring(index+1);
}
}
%>
<%=msg%>
Copyright © 2003 WEBsina Inc