<% ' ' This supports redirection for WAP/WML clients. ' We check the Http_accept variable to see if it contains "wap". If it does, we redirect the request ' to WapDefault.asp. Using this method, an HTML browser or a cell phone could make the same URL ' request (http://localhost/DAW.Examples.Order11) and get the proper data served. ' acceptString = Request.ServerVariables("HTTP_ACCEPT") If Instr(LCase(acceptString), "wap") > 0 Then Response.Redirect "WapDefault.asp" End if ' ' else do the normal default.asp HTML behavior ' %> Data Entry and Report Example <body> </body>