Monday, April 16, 2012

Message box in server using Lotus script

Some of the time we need the prompt while running an agent in server.

But everyone easily tell that it is not possible on Lotus script.

But we can. We have print statement in lotus script. It is very powerful statement and also here we can use javascript code itself. The following will throw the message box while running an agent in server.

Code:-
Dim alertMsg As String
Print {<script language="JavaScript" type="text/javascript">}
Print {alert('Ramkumar')}
print {</script>}

No comments:

Post a Comment