OYEWAP.COM

  How do I pass a variable from WML to ASP?

Let's say you have an ASP called "myasp.asp", and you have a WML variable called "wmlvar". When requested as "myasp.asp?wmlvar=something", you can grab the contents of the variable like this:

 
dim aspvar
aspvar = Request.QueryString("wmlvar")

The ASP variable "aspvar" will now contain the string "something". To make things easier, the ASP variable can of course have the same name as the WML variable.