I am having two html files. One file should include the source of other file like this.
file1.html
<html>
<head></head>
<body>
<span>Hello #{bean.name}</span>
</ >
</html>
file2.html
<html>
<head></head>
<body>
<iframe src="file1.html"></iframe>
</body>
</html>
Inside iframe i want to display a string "Hello John" depending upon the user. How to pass the parameter name to file1.html