Dear all,
I have an application which allow user to enter information and to display the information in a web page which created using Dreamweaver.
Can the data be retrieved using any script and show it on the web page ?
As I know the data can be easily retrieved if the data stored in Microsoft Access. Can we use the same method to retrieve the data if the information is in Notes Application?
Please advice. Thanks in advance.
Subject: Can we retrieve field value/data in a web page created using Dreamweaver ?
There are several ways to retrieve data from a notes database via the web.
-
retrieve data from a view in Notes with the http command http://server/database.nsf/view?ReadViewEntries which will generate a xml response
-
code a simple script agent responding to a ajax http call like http://server/database.nsf/agent?OpenAgent¶m=anyquery…
the script will look after your query and generate your response.
There are several http commands for domino you can use, search the internet for examples.
There are other ways to access a Domino database like via ODBC, COM objects etc
note: you must have access to the notes database in order to retrieve any data. Either as anonymous or after user login. You can provide username and password in the http call if needed.