<%= Model %>
In MVC 3, you see the <dynamic> set as model by default in your view. Just pass a string as object to the view (return View((object)"Name");) from your controller.
Also see this for a more complex example.
[Edit]
I have got to start reading better :)
Ok, here we go.
The easyest way to do this, is via a <form>. Any input element is posted to your controller where the 'name' attribute will be the variable name (parameter).
Example:
<form action="/Contact/SendMessage" method="post">
<table>
<tr>
<th>Your e-mail adres:</th>
<td class="inputCell">
<input id="txtEmail" name="Email" type="text" value="<%= Model %>" />
</td>
</tr>
<tr>
<td colspan="2">
<textarea name="Message" rows="10" style="width: 450px;"></textarea>
</td>
</tr>
<tr>
<th colspan="2" style="text-align: right;"><input type="submit" id="SendButton" value="Send Message" /></th>
</tr>
</table>
</form>
On the controller, you can have your function like:
[AcceptVerbs(HttpVerbs.Post)]
public RedirectResult SendMessage(String Email, String Message)
{
}