Related questions
Could not find file ${libs.jstl11.classpath} to copy
Good day guys. I have this project in netbeans that when I try to run, it gives out an error message: "Warning: Could not find file C:\wamp\folder1\${libs.jstl11.classpath} to copy. BUILD FAILED (total time: 0 seconds)
I …
Popup Message boxes
I am unsure of how to code popup message box in my methods.
public String verify(){
String result = "failed";
int authcode = staffBean.getVerifyCodeByName(getLoginUserName());
if (code == authcode){
result ="success";
}
else{ //statement to popup an error message box
}
return result;
}
I …