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

keil Html server and redirect page

i am looking a way to send an html page with keil.
example:
i have a custom login form in index.cgi (not the keil single-user default login)
if the login is correct i have to load the user-corresponding page.
if login is wrong i have to reload index.cgi

somthing like this:
if( usr_admin == __TRUE ) GotoPage( "/admin.cgi" );
else if( usr_guest == __TRUE ) GotoPage( "/guests.cgi" );
else GotoPage( "/index.cgi" );

i am wondering if i have to use javascript to do this!?

0