>> I was told it was just a raw post
ok, good.
>> (as if this was some standard format that I should know about).
ha ha - In cases like this I smile and nod - everyone has to learn sometime.
when a client sends data to a server it usually does a POST. The data attached to the POST is called the PostData, and it's formatted as
parameter=value&otherparameter=anothervalue
and so on.
it's a & separated list of name-value pairs.
>> Is there any way I can view the data in a raw post
yes (although chances are you won't actually need to...)
you can get _all_ the data, for parsing yourself as
somestring = p_web.GetValue('_postdata_')
but there's no point in doing this. Rather you can access each parameter individually using GetValue
someString = p_web.GetValue('someParameter')
but even this may be overkill...
>> My intention is to have my Nettalk webserver receive this data so I can then insert into my Lead Database.
If you were using NetTalk 8 you can generate a procedure which he can post to that pretty much does all of this for you. Your best bet would be to join us on the webinar to see the mechanics of this. For NetTalk 7 you would use a NetWebWindow procedure, and the p_web.GetValue to parse out the request.
cheers
Bruce