Today, I saw a friend's WAP website to browse it. It seems that he must have a checklist. If you don't support WML, you think carefully, Redirect is just browsing for WML. What is the operation of the device (such as IE), so RESPONSE.REDIRECT can still be used, how is the key to determine if the browser is supported by the friend to see, the result is this: IF (StrPOS ("WAP", $ _HTTP_GET_VARS [HTTP_ACCEPT '])) {Header ("location: http://hikey.net);} PHP code ... But my program is ASP, so there is this code: <% Response.Buffer = TRUE Dim isWap httpAccept = LCase (Request.ServerVariables ( "HTTP_ACCEPT")) if Instr (httpAccept, "wap") then isWap = 1 Else Response.Redirect "http://www.gelon.net/cgi- BIN / WAPALIZE.CGI? URL = http://hikey.net/wap "response.end end if%> add this code on the head of your WAP page (the most!), if the browser If you don't support it, you will redirect it to the WAP emulator provided by Gelon.Net. Can see the effect ...