Dynamic Form Problems

Discussion to talk about software related topics only.
Post Reply
mcmahoney
Posts: 3
Joined: Mon Jun 25, 2012 3:59 pm

Dynamic Form Problems

Post by mcmahoney »

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.
rnixon
Posts: 833
Joined: Thu Apr 24, 2008 3:59 pm

Re: Dynamic Form Problems

Post by rnixon »

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.
mcmahoney
Posts: 3
Joined: Mon Jun 25, 2012 3:59 pm

Re: Dynamic Form Problems

Post by mcmahoney »

Thank You for the response. I found the problem in the post control. The redirect wasn't working.
Post Reply