|
This property holds a reference to the current XForm object. It
is provided to ease transition to and from existing code that
references the standard ASP Request object.
Hence code that refers to Request.Form can easily be rewritten.
So the following code...
Set theReq = Request ' standard ASP Request object
Response.Write theReq.Form("name") & "<br>"
Response.Write theReq.Form("address") & "<br>"
is functionally identical to ....
Set theReq = Server.CreateObject("ABCUpload4.XForm")
Response.Write theReq.Form("name") & "<br>"
Response.Write theReq.Form("address") & "<br>"
or alternatively ....
Set theForm = Server.CreateObject("ABCUpload4.XForm")
Response.Write theForm("name") & "<br>"
Response.Write theForm("address") & "<br>"
|