This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

feedback on "HTTP Upload"

Hi all,

I used the HTTP_Upload example in order to update a board's firmware.
Everything works fine, but I'd like to add a feedback about the updating status.

I have no experience about web developing and I'm stuck on it.
The example contains:
<input type=button value="Send" OnClick="this.form.submit()">

I modified this code snipped as:

function buttonClick(f){
window.location.href="bootlresult.cgi";
f.submit(); }
[..]
<input type=button value="Send" OnClick="buttonClick(this.form)">

The cgi_process_data() is still called, but bootlresult.cgi is not loaded.
Any hint, please?

Thank you!!!!

0