Form.Submit

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am starting a an ASP.NET proyect. I need to receive and parse data from a
form outside of my proyect. What would be the best way to debug this?

Thanks,
Hanika
 
Create a form that sends the same type of data to your form handler, and add
it to your project. Use it to debug. When you're done, remove it.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
Hello Kevin,

Thanks for your response. The form data comes from a PDF form, it XML
format. I don't see how I could replicate that...

I guess I could try loading it from a file.

Thanks,
Hanika
 
Thanks for your response. The form data comes from a PDF form, it XML
format. I don't see how I could replicate that...

Well, you certainly DO have a problem, because the only way your ASP.Net
appp can process a form is if it receives an HTTP POST Request with the form
data in it. AFAIK, a PDF form doesn't POST an HTTP Request. Neither can an
XML document.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.
 
Back
Top