Creating textarea in aps package.
In Eclipse choose type as string and give minlength=500 and maxlength=1000 it will appear as textarea with scrolable If you are not giving minlength and maxlength it will display as textbox.
In Eclipse choose type as string and give minlength=500 and maxlength=1000 it will appear as textarea with scrolable If you are not giving minlength and maxlength it will display as textbox.
Sample code $str = “<?xml version=’1.0′ encoding=’UTF-8′?>”; $str.= ‘<output xmlns=”http://apstandard.com/ns/1/configure-output”><settings>’; $errorMessages=”mydoubts.in already exists”; $errsetting=’domainname’; $str .= ‘<errors>’; $str .= ‘<error id=”‘.$errsetting.’” setting-id=”‘.$errsetting.’”>’; $str .= ‘<message>’.$errorMessages.'</message><system>’.$errorMessages.'</system></error>’; $str .= ‘</errors>’; $str .= ‘</settings>’; echo $str;
Below sample code will execute through verification script will work sample code to load a country dropdownbox. $str = “<?xml version=’1.0′ encoding=’UTF-8′?>”; $str .= ‘<output xmlns=”http://apstandard.com/ns/1/configure-output”><settings><setting id=”country”>’; foreach () { $str .= ‘<choice id=”‘.$id.’”><name>’.htmlspecialchars($cname).'</name></choice>’; } $str .= ‘</setting></settings>’; echo $str;
if you use multi_step_login as a class in entry point link i will look like as below <entry method=”GET” dst=”http://mydomain.com/default.aspx?mykey={secretkey}”> if you use multi_step_login as class this time verification script will execute each time when the customer login into the customer control panel.and the “secretkey” is updating every time through verification script and that changes… Read More »