I need to add post data to a link and then post to it via visual basic. Here is a little example of what I am trying to do.
Let’s say I have a job with the following info
name : job name 1
department: administrative
description: some description here, could be very long
hours: part time
pay: 10$/hr
This is the link to add a new job
https://example.com/action=new
I need to add URL-encoded information like this.
po_name=job%20name%201&desc=some%20description%20here,%20could%20be%20very%20long&dept=administrative&part_time=yes&salary=10$/hr
All of that is post data. I really have no idea where to start on this and need to be pointed in the right direction. Can anyone help me out? Thanks,