If I get a chance tonight I'll try to write something up.
But this is what you need to do basically:
1. Create an Access Database to with appropriate tables to hold your data. (This can be upgrade to SQL later if you feel the need, but I also found Access to work fine for anything under 30ish users at a time, and probably even higher than that.)
2. Create an ASP script which will process the data that you send to it. I would suggest sending the data via the POST method, as it includes the data in a separate packet from your HTTP request, which means it can hold more data.
More Info here:
http://www.cs.tut.fi/~jkorpela/forms/methods.htmlYou will be processing this data exactly the same as if it were being submitted to your script from an HTML form with Input fields.
You could make this 'processor' with ASP.NET if you chose (or PHP, Coldfusion or any other CGI type processor), but I'm more familiar with ASP 2.0 than .NET, and have lots of example code I can work from.
3. Create your LSL Script which will call llHTTPRequest, the data you want to send should be formatted in the body parameter as name=value pairs. Some type of separator character may be needed between variables, though I can't recall what it is right now.
4. Handle the http_response event in your LSL script to know how the ASP Script responded
I'll try to get more informaiton posted later if you need.