Problem with get__Form(&pIUKN)
Web Development
1
Posts
1
Posters
7
Views
1
Watching
-
I'm trying to understand why when my html form has ENCTYPE="multipart/form-data" declared. I am unable to retrieve the collection through the IRequest Interface. Heres what I'm trying to do: IRequestDictionary * pDict; IRequest.get__Form(&pDict); now when I call pDict->Count(&iCount) I get a big fat zero even though my form contains 3 objects. If I take out the ENCTYPE="multipart/form-data" then it works just fine. You may say then just take it out stupid, but I would like send files from my client to the server. Any help in understanding why this doesn't work would be appreciated. Thanks!!