Login Register






[ HELP ] adding a set value to a URL filter_list
Author
Message
[ HELP ] adding a set value to a URL #1
So I am making/updating my proxy scraper and I want the user to set the timeout of a proxy with a track bar I have added.
and to make the value of the trackbar be the timeout value in the URL.

I am doing this in VB.Net and names the Trackbar to "tbTimeout"
inside the URL it shows this

Dim response As System.Net.HttpWebResponse = DirectCast(DirectCast(WebRequest.Create("https://api.proxyscrape.com/?request=getproxies&proxytype=http&timeout=10000&country=all&ssl=all&anonymity=all"), System.Net.HttpWebRequest).GetResponse(), System.Net.HttpWebResponse)


timeout=10000 and would like it to have it be set by the user using the value of the trackbar.
(This post was last modified: 04-26-2019, 12:30 AM by NullData.)
[Image: e053f64769849787d98aa441b1c61a14.jpg]

Reply

RE: [ HELP ] adding a set value to a URL #2
I figured it out

https://api.proxyscrape.com/?request=get...p&timeout=" & tbTimeOut.Value & "&country=all&ssl=all&anonymity=all

all I had to add was "& tbTimeOut.Value & " to the timeout value.
[Image: e053f64769849787d98aa441b1c61a14.jpg]

Reply

RE: [ HELP ] adding a set value to a URL #3
(04-26-2019, 02:52 AM)NullData Wrote: I figured it out

https://api.proxyscrape.com/?request=get...p&timeout=" & tbTimeOut.Value & "&country=all&ssl=all&anonymity=all

all I had to add was "& tbTimeOut.Value & " to the timeout value.

that good you figure out your problem.
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#

[+] 1 user Likes darkninja1980's post
Reply