Eso se hace con JavaScript
:
Código:
<html>
<head>
<script>
function enfocar()
{
cnombre.focus();
}
</script>
<title>SetFocus al Cargar</title>
</head>
<body onLoad = "enfocar()">
Nombre: <input type = "text" name="cnombre" size="20">
</body>
</html>
Saludos