VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



A must have Send HTML headers.

by c0rrupt0 (2 Submissions)
Category: Internet/HTML
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Date Added: Wed 3rd February 2021
Rating: (5 Votes)

This is the data that you must send to a server when requesting an HTML page. If you are useing a control such as the Microsoft Internet control then you do not need this. If you are builduing a source grabber or something liek that, then you will need this.

Inputs
at least some form of internet connection. I used mswinsck.ocx for my control and I have this code located in the winsock_connect event.
Side Effects
non so far

Rate A must have Send HTML headers.

'As you can see I have a winsock control named sckURL.
'You can change that to anythign you wish.
With sckURL
    .SendData "GET /" & tPage & " HTTP/1.1" & vbCrLf
    .SendData "Accept: text/plain" & vbCrLf
    .SendData "Accept-Language: en-us" & vbCrLf
    .SendData "Accept-Encoding: gzip, deflate" & vbCrLf
    .SendData "User-Agent: Mozilla/4.0 (compatible; MSIE 5.0; Windows 98; DigExt)" & vbCrLf
    .SendData "Host: " & varDom & vbCrLf
    
    .SendData "Connection: Keep-Alive" & vbCrLf & vbCrLf
  End With

Download this snippet    Add to My Saved Code

A must have Send HTML headers. Comments

No comments have been posted about A must have Send HTML headers.. Why not be the first to post a comment about A must have Send HTML headers..

Post your comment

Subject:
Message:
0/1000 characters