<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <link rel="stylesheet" href="/statics/demosource/showrazor.css" /> </head> <body> <!DOCTYPE html> <html> <body> <span class="marked">@if (IsPost) Dim companyname = Request("CompanyName") Dim contactname = Request("ContactName") @</span><p>You entered: Company Name: <span class="marked">@companyname</span> Contact Name: <span class="marked">@contactname</span> </p> <span class="marked">else @</span><form method="post" action=""> Company Name: <input type="text" name="CompanyName" value=""> Contact Name: <input type="text" name="ContactName" value=""> <input type="submit" value="Submit" class="submit"> </form> <span class="marked">end if</span> </body> </html>