Hi x-perts,
I am new to perl programming and am getting an error everytime when i am calling a perl script on action of the form.like this
<form action="https://someurl/cgi-bin/abc-login.pl?servle tLoc=/servlets/iclientservlet/sadf/&cmd=login&lang uageCd=ENG" method="post" id="login" name="login" autocomplete=of f onSubmit="signi n(document.logi n)">
the signin function is given below:
function signin(form)
{
var now=new Date();
form.timezoneOf fset.value=now. getTimezoneOffs et();
return ;
}
although i have put the perl script abc-login.pl in to CGI-BIN folder.
but i was not sure about the CGI-BIN folder,so i searched for cgi-bin folder and found 2 folders and i put perl script in both the folders.
Please tell me where am doing mistake?
Thanks,
Max
I am new to perl programming and am getting an error everytime when i am calling a perl script on action of the form.like this
<form action="https://someurl/cgi-bin/abc-login.pl?servle tLoc=/servlets/iclientservlet/sadf/&cmd=login&lang uageCd=ENG" method="post" id="login" name="login" autocomplete=of f onSubmit="signi n(document.logi n)">
the signin function is given below:
function signin(form)
{
var now=new Date();
form.timezoneOf fset.value=now. getTimezoneOffs et();
return ;
}
although i have put the perl script abc-login.pl in to CGI-BIN folder.
but i was not sure about the CGI-BIN folder,so i searched for cgi-bin folder and found 2 folders and i put perl script in both the folders.
Please tell me where am doing mistake?
Thanks,
Max
Comment