It depends on the server language you use
If it is php and the method is GET (and saving it inside a variable)
Code:
$myVar = $_GET["name_of_variable_in_form"]
If it is php and the method is POST
Code:
$myVar=$_POST["name_of_variable_in_form"]
if you are using ASP and the method is GET
Code:
varName = request.querystring("name_of_variable_in_form")
if you are using ASP and the method is POST
Code:
varName= request.Form("name_of_variable_in_form")
Of course, you can use ASP .NET, then it is a bit different because you'd be using <asp:label></asp:label>
Bookmarks