<!DOCTYPE html>
<html>
<body>
@{
if (IsPost)
{
string companyname = Request["CompanyName"];
string contactname = Request["ContactName"];
<p>你输入:<br>
公司名称:@companyname<br>
联系人姓名:@contactname</p>
}
else
{
<form method="post" action="">
公司名称:<br>
<input type="text" name="CompanyName" value=""><br>
联系人姓名:<br><br>
<input type="text" name="ContactName" value=""><br><br>
<input type="submit" value="提交" class="submit">
</form>
}
}
</body>
</html>