I need some help with parsing information from a query string to a database.
There is a company that wants to send me information to a page on my server as a query string (http post)
e.g. www.mydomain.com/info.aspx?Name=Smith&LastName=Taylor
They will send probably about 15 different strings of information a day. I need to get this information and put it into my database automatically without user interaction.
I have been reading about http web request and so on but I cant understand how the server knows when a new piece of information has been submitted and how I get it to populate the database automatically.
What information would I need to add to the receiving page.