I have a connect ME 9210 with netOS7.4. I am trying to do something simple at this point. have a button that calls the Stub function.
Below is my test.htm page
Sample Advanced Web Server Button
This creates the following test_v.c file
/* ************************************ */
/* * Built from "html est.htm" * */
/* ************************************ */
char strBtnTxt[] = "";
extern void MyButtonClick(char *theValuePtr);
void MyButtonClick(char *theValuePtr) {
return;
}
extern void initFormPage(void *theTaskDataPtr, Signed16Ptr theIndexValuesPtr);
void initFormPage(void *theTaskDataPtr, Signed16Ptr theIndexValuesPtr) {
return;
}
extern void initPage(void *theTaskDataPtr, Signed16Ptr theIndexValuesPtr);
void initPage(void *theTaskDataPtr, Signed16Ptr theIndexValuesPtr) {
return;
}
#endif /* RomPagerServer */
so far I have been unable to get “MyButtonClick” to be called.
the only thing that happens is IE says “Error on Page” when I click the button.
Any help would be appreciated.
Regards
Paul