Equivalent of document postopen event in internet apps

Hi Guys,

Got a problem once more.

I am developing an application that used by both client and internet users.

I want to put a ‘friendly reminder’ pop-up box everytime my user opens a document.

I have accomplish this in the client side by using the ‘post open’ event and putting a messagebox function in lotus script.

Anyone have idea on how i can do this on web side?

Subject: equivalent of document postopen event in internet apps

You can use the onLoad event of the Form.Don’t use the postopen event if the same has to work in client and browser.

The onLoad event works for the client as for the Browser so only one time programming is necessary.

Good luck,

Wim

Subject: RE: equivalent of document postopen event in internet apps

got it!

Thanks guys

Subject: RE: equivalent of document postopen event in internet apps

For Domino web apps, the “client” is the web browser. Therefore, you have to use a language that the web browser knows – not LotusScript. You could write an “onload” event in JavaScript.