Vorrei sapere come posso fare per passare un parametro da una pagina all'iframe in esso contenuto. Ad esempio, se la pagina è la seguente:

.....
.....
<tr align="right">
<td width="50%">
<iframe src="../uploadproject.html?name=savio" width="100%" height="400pt" frameborder="0" scrolling="no">
</iframe>
</td>
<td width="50%">
<iframe src="../createproject.html?name=savio" width="100%" height="400pt" frameborder="0" scrolling="no">
</iframe>
</td>
</tr>
.....
.....
e l'iframe è il seguente:
<html>
<head>
<link rel="stylesheet" type="text/css" href="../user.css" />
<head>
<body>
<div align="right" class="data-font">
<form action="...." method="POST">
<fieldset>
...
</fieldset>
</form>

</div>
</body>
</html>
Vorrei sapere se il seguente:

src="../uploadproject.html?name=savio"

è il metodo giusto per passare un parametro da una pagina ad un'altra, in questo caso all'iframe contenuto.