Hi,
In web application, I have added code in script and want to call error page message(location- web application properties>Error page tab) in script.
Example:
code in script like
if (condition==true)
{
}
else{
//display error page message
}
Any suggestions?
Regards,
Tejashri
Solved! Go to Solution.
Views
Replies
Total Likes
Views
Replies
Total Likes
Hello @tejashriw155148,
Error page comes in action when there is some issue with the page and the error page content is displayed.
If you want to show error then you can store that error in content variables like
ctx.vars.line1="ERROR_2_CONTENT HERE";
ctx.vars.line2="ERROR_2_CONTENT_HERE";
and then you can print the error like this.
<%if (condition==true){
your logc here
}else{
%>
<%= ctx.vars.line1 %>
<%
}
%>
Let me know if that works.
Views
Replies
Total Likes
Using alert I'm able to show the message but I want to display same which I have defined in Error page like below
Is it possible to call it in script?
Regards,
Tejashri
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies