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!?