#include "__welcome.h" #include "__setupadmin.h" namespace http { int __welcome::page(HTTPParameters &p) { p.data << "
" "Session Id: " << p.httpSession.getSessionId() << "
User: *ADMIN" "

"; button1Click *click = new button1Click(); coreutils::ZString button1_Click(p.actionList.addAction(click)); p.data << "
" "
" "

You have successfully set up a JETServer." "
The configuration has not yet been established for this web site.

" "" "

"; p.data << "

"; p.httpRequest.response.addHeader(coreutils::IMFHeader("Content-Type", "text/html")); return 1; } bool __welcome::button1Click::action(HTTPParameters &p) { __setupadmin setupadmin(p); return true; } }