Here’s a super-simple Razor code sample to demonstrate putting a Twitter feed on a page:
<!DOCTYPE html>
<head>
<title>Twitter Feed</title>
</head>
<body>
<h1>Twitter Feed</h1>
<form action=”” method=”POST”>
<div>
Enter the name of a Twitter feed to display:
<input type=”text” name=”TwitterFeedName” value=””/>
<input type=”submit” value=”Submit” />
</div>
<div>
@if (!Request[“TwitterFeedName”].IsEmpty())
{@Twitter.Profile(Request[“TwitterFeedName”])}
</div>
</form>
</body>
</html>
By the way, if you want some free hosting space to test Webmatrix features, check out Cytanium.com