Using ASP.NET HTTPHandlers, how can I access data that has been posted from third party websites when input tags does not includes any name (or id) attributes?
How can I access data posted from third party websites with no name attribute using ASP.NET HTTPHandlers?
if there is nothing to identify them then you have to access them as collection by index.
For Each Element As String In Request.Form.Keys
'do something here like check if this is the one?
If element = "something" ' or element.indexOf("bla") Then
'do something else
End If
Next
rose garden
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment