First ,i'm sorry for my bad English !
I can use "http.dll" to read a "www "type page ,e.g."www.yahoo .com".But I cannot read a"wap" type page(wml),e.g."wap.yahoo.com".Why ?
How can I do it in Basic4PPC?
Sub Globals
'Declare the global variables here.
End Sub
Sub App_Start
req.New1("http://wap.yahoo.com") 'req is a WebRequest object
res.New1 'res is a WebResponse object
res.Value = req.GetResponse
Msgbox(res.GetString)
End Sub