Navigazione

    Privacy - Termini e condizioni
    © 2020 Search On Media Group S.r.l.
    • Registrati
    • Accedi
    • CATEGORIES
    • Discussioni
    • Non letti
    • Recenti
    • Hashtags
    • Popolare
    • Utenti
    • Stream
    • Interest
    • Categories
    1. Home
    2. frafa
    3. Post
    F

    frafa

    @frafa

    • Profilo
    • Chi segue 0
    • Da chi è seguito 0
    • Discussioni 1
    • Post 3
    • Migliore 0
    • Gruppi 0
    Iscrizione Ultimo Accesso
    0
    Reputazione
    3
    Post
    0
    Visite al profilo
    0
    Da chi è seguito
    0
    Chi segue
    User Newbie

    Post creati da frafa

    • RE: [ASP] Trasformare in htm

      Mi da il seguente errore:

      Tipo di errore:
      Errore di run-time di Microsoft VBScript (0x800A01B6)
      Proprietà o metodo non supportati dall'oggetto: 'Server.URLDecode'

      postato in Coding
      F
      frafa
    • RE: [ASP] Trasformare in htm

      Function GetUrl(Url)
      Dim Http
      Set Http = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
      Http.open "GET",Url,False
      Http.Send()
      GetUrl = Http.ResponseText
      Set Http=Nothing
      End Function

      postato in Coding
      F
      frafa
    • Generare file html con xmlhttp

      Non riesco a copiare i caratteri accentati perchè non li legge.

      Il codice è il seguente dove sbaglio:

      Function GetUrl(Url)
      Dim Http
      Set Http = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
      Http.open "GET",Url,False
      Http.Send()
      GetUrl = Http.ResponseText
      Set Http=Nothing
      End Function

      Function SaveFile(PathFile,Content)
      Dim Fso, File
      Set Fso = Server.CreateObject("Scripting.FileSystemObject")
      Set File = Fso.CreateTextFile("C:\InetPub\wwwroot\File_TXT\upload\utenti.txt",2,true)
      File.Write Content
      File.Close()
      Set File = Nothing
      Set Fso = nothing

      End Function
      call SaveFile("utenti.txt",geturl("http://localhost:81/prova.asp"))

      image image image

      postato in Coding
      F
      frafa