Posted on: 7/17/2014 3:40:00 AM | Views : 360

My question asrised from the first simple example in ( http://www.w3schools.com/aspnet/webpages_forms.asp ) as:
<html> < body> @{ if (IsPost) { string companyname = Request["companyname"]; string contactname = Request["contactname"]; <p>You entered: <br /> Company Name: @companyname <br /> Contact Name: @contactname </p> } else { <form method="post" action=""> Company Name:<br /> < input type="text" name="CompanyName" value="" /><br /> Contact Name:<br /> < input type="text" name="ContactName" value="" /><br />< ...

Go to the complete details ...