J
jeff_j_dunlap
Dear forum members:
I have created an html calculator in C++ which I imagine is very
similar to something written in Perl or PHP. It has an html form
interface and produces html output, http://app.directcorrespondentlender.com/AmortBrowser.srf
and I would like to embed this calculator into a static web page.
Something like this:
static_doc.html
......static html content
......calculator (application)
When the user presses the 'Calculate' submit button, I would like for
the calculations to appear in the same page.
Today, I put the calculator inside of an iframe but it looked cludgy
since you'd have to scroll the iframe to see the calculation results.
I also don't think that a regular frame would look nice.
My only solution may be to have the C++ application 'read' the static
html file and combine it with my calculator output, then display the
html output, but an embedded solution would be ideal for me. Would
AJAX be a good solution for this?
Any thoughts or suggestions would be appreciated,
Jeff
I have created an html calculator in C++ which I imagine is very
similar to something written in Perl or PHP. It has an html form
interface and produces html output, http://app.directcorrespondentlender.com/AmortBrowser.srf
and I would like to embed this calculator into a static web page.
Something like this:
static_doc.html
......static html content
......calculator (application)
When the user presses the 'Calculate' submit button, I would like for
the calculations to appear in the same page.
Today, I put the calculator inside of an iframe but it looked cludgy
since you'd have to scroll the iframe to see the calculation results.
I also don't think that a regular frame would look nice.
My only solution may be to have the C++ application 'read' the static
html file and combine it with my calculator output, then display the
html output, but an embedded solution would be ideal for me. Would
AJAX be a good solution for this?
Any thoughts or suggestions would be appreciated,
Jeff