Chamar outro jsp

olá, boa tarde.

Estou estudando o struts e estou fazendo um aplicativo simples, é uma tela de login/senha e um cadastro, o que acontece e que eu não estou conseguindo chamar a tela de cadastro, veja o código abaixo.

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
	pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Chat Alegria</title>
</head>
<body>
<!--<html:form action="CriarCadastro" method="post">-->
<!--			<td colspan="0"><html:submit value="CADASTRAR" /></td>-->
<!--</html:form>-->
<html:form action="CriarUsuario" method="post">
	<center><br>
	<br>
	<br>

	<table width="50%">
		<tr>
			<td>Nome:</td>
			<td><html:text property="nome" /></td>
		</tr>

		<tr>
			<td>Senha:</td>
			<td><html:password property="senha" /></td>
		</tr>

		<tr>
			<td colspan="0"><html:submit value="OK" /></td>
			<td colspan="0"><html:link page="/WEB-INF/src/Cadastro.jsp" name="Cadastro"/></td>			
		</tr>
	</table>
	</center>
</html:form>

</body>
</html>

A pergunta que não quer calar.
Como eu faço para chamar um outro arquivo jsp para o cliente fazer um cadastro?

desde já agradeço.

Na action de controle de acessos (login) você redireciona para a JSP do cadastro.