Visualizzazione dei risultati da 1 a 5 su 5

Discussione: links in vb

  1. #1

    links in vb

    Come faccio a richiamare una pagina ASP da un programma vb???????

    So che da qualche parte è già stato scritto.... ma sono immerso nella programmazione di qualcosa che non so fare e non ho tempo di cercare.... grazie!!!!!
    Ramses

  2. #2
    Se vuoi richiamarlo e basta cerca "VB Links" di F.Botta


    Se invece vuoi gestire i risultati dell'asp...

    The easiest way is using Microsoft Internet Transfer Control.
    To test, you can put an Internet Transfer control on a form and run the
    following code:
    Dim str as string
    str = Inet1.OpenURL("Your ASP's URL")
    MsgBox str

    You can also use APIs or use the XMLHTTP object as the following code.

    Dim HttpReq As New MSXML2.XMLHTTP

    HttpReq.open "GET", "http://XMLSampleServer/CatalogServer.asp", False
    HttpReq.send
    MsgBox HttpReq.responseText


  3. #3
    mi basta richiamarlo... grazie!
    Ramses

  4. #4

  5. #5

    bene

    E bello quello che io ho visto.
    Pero supponiamo che una volta connesso con la mia pagina asp ,devo autenticarmi,e una volta autenticato ho la risposta di autenticazione del server.
    grazie

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved.