You need to use the <form> tag in your login page.
Use <form method=post> if you want to pull the values via the request.forms collection or use >form method=get> to pull the values from request.querystring collection.
The form tags must be around all controls that you need to reference the values of in your asp page.