Click here to Skip to main content
15,919,613 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: XML From Web Service Pin
24-Feb-02 21:43
suss24-Feb-02 21:43 
GeneralRe: XML From Web Service Pin
David Salter27-Feb-02 21:45
David Salter27-Feb-02 21:45 
GeneralCalling Functions From a Non-Registered DLL Pin
Tim Rymer18-Feb-02 9:37
Tim Rymer18-Feb-02 9:37 
GeneralDisplaying HTML between UserControl tags Pin
Pete Callaway18-Feb-02 7:15
Pete Callaway18-Feb-02 7:15 
GeneralRe: Displaying HTML between UserControl tags Pin
Konstantin Vasserman19-Feb-02 4:44
Konstantin Vasserman19-Feb-02 4:44 
QuestionHow to retrieve data in a page from another website? Pin
Alvaro Mendez18-Feb-02 6:36
Alvaro Mendez18-Feb-02 6:36 
AnswerRe: How to retrieve data in a page from another website? Pin
mortrr25-Feb-02 11:00
mortrr25-Feb-02 11:00 
AnswerRe: How to retrieve data in a page from another website? Pin
Bill Dean25-Feb-02 10:58
Bill Dean25-Feb-02 10:58 
Have you tried Microsoft's Internet Transfer Control? You can provide it with a URL (from your user) and it will request the page and return the source HTML to your ASP code as a string. For example:

Set Inet1 = Server.CreateObject ("InetCtls.Inet")

Inet1.Protocol = 4 'HTTP
Inet1.AccessType = 0 'Direct connection to internet
Inet1.RequestTimeout = 60 'in seconds
Inet1.URL = "http://www.codeproject.com"

result = Inet1.OpenURL 'get the sourse for the url.

as the end of this, the string "result" should hold the source for www.codeproject.com, which your ASP can then parse and present to the end user.

Look up "Internet Transfer control" in the MSDN library for more documentation.


GeneralHelp!! Problem with System.Drawing... Rectangles always upside down Pin
16-Feb-02 21:00
suss16-Feb-02 21:00 
GeneralRe: Help!! Problem with System.Drawing... Rectangles always upside down Pin
Roger Wright22-Feb-02 11:21
professionalRoger Wright22-Feb-02 11:21 
GeneralASP displays "??????" Pin
Philip Patrick15-Feb-02 12:27
professionalPhilip Patrick15-Feb-02 12:27 
GeneralIE Back button Pin
15-Feb-02 2:12
suss15-Feb-02 2:12 
GeneralRe: IE Back button Pin
Paul Watson17-Feb-02 22:34
sitebuilderPaul Watson17-Feb-02 22:34 
Generalxml Pin
Mazdak14-Feb-02 9:23
Mazdak14-Feb-02 9:23 
GeneralRe: xml Pin
markkuk14-Feb-02 19:50
markkuk14-Feb-02 19:50 
GeneralRe: xml Pin
Mazdak14-Feb-02 19:53
Mazdak14-Feb-02 19:53 
GeneralSession does not work Pin
Mazdak13-Feb-02 22:13
Mazdak13-Feb-02 22:13 
GeneralRe: Session does not work Pin
omkamal14-Feb-02 4:04
omkamal14-Feb-02 4:04 
GeneralRe: Session does not work Pin
Mazdak14-Feb-02 4:31
Mazdak14-Feb-02 4:31 
GeneralAdding dates to a database Pin
Xavier Shay13-Feb-02 14:33
Xavier Shay13-Feb-02 14:33 
GeneralRe: Adding dates to a database Pin
Konstantin Vasserman13-Feb-02 17:01
Konstantin Vasserman13-Feb-02 17:01 
GeneralRe: Adding dates to a database Pin
Xavier Shay14-Feb-02 23:43
Xavier Shay14-Feb-02 23:43 
GeneralRe: Adding dates to a database Pin
15-Feb-02 20:08
suss15-Feb-02 20:08 
GeneralUsing ocx in intranet Pin
12-Feb-02 22:26
suss12-Feb-02 22:26 
GeneralRe: Using ocx in intranet Pin
12-Feb-02 23:02
suss12-Feb-02 23:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.