I am having a problem with getting the data into the NetBurner module 5234/5. I can read values out with no problem. If I build a form with a submit button. Once I push the button, the browser can't load a page and I don't see the data coming into the module.
The only example program that came with the kit uses a single line form and it seems to work.
Does anyone have a working version of the program in the programmers guide section #9?
Any help would be highly appreciated.
Dynamic Form Problems
Re: Dynamic Form Problems
If you have your code written correctly, when the browser does a POST is going to give control to your post handler function, usually called MyDoPost in the examples. My first guess is you have a bug in your post handler that is not returning, crashing, etc. The examples usually have some serial console output, add those to your code and see what the code is doing.
Re: Dynamic Form Problems
Thank You for the response. I found the problem in the post control. The redirect wasn't working.