Skip to main content

Common web based questions in lotus Notes.

1. Which server task is used for Lotus Notes web applications?
2. What are the commands to load and quit the HTTP server task?
load http
tell http quit
restart task http
3. What are the programming language used for web applications?
4. What is pass - thru HTML, how to use it ?
Notes rich-text has a feature called 'Pass-thru HTML.' This is text that the Domino server will NOT attempt to format for the web, it will just 'pass it through'. If you create content with a Notes client that gets published to the web, you may wish to use this so you can 'hand-code' your HTML for special effects or some other purpose.
5. What is the difference between pass - thru html and Render pass thru html in Notes ?
Check "Render pass through HTML in Notes" in the Form or Page Properties box to have the Notes client process the HTML. If you do not check "Render pass through HTML in Notes," the HTML appears as plain text.
6. What changes are to be done for a Form in Notes to get displayed in web?
7. What does the form property ‘Generate HTML for all fields do’ ?
8. What are the form events used for web applications?
9. What are the ways to call an agent on the click of a button for web application?
10. What are the Queryopen and Querysave equivalent events used in webapplications?
12. What does the event WebQueryOpen event do?
13. What does the event WebQuerySave event do?
14. What are the different programming languages in which the script library bewritten?
15. In which version of Lotus Notes was Javascript Library introduced?
16. Where can functions be written apart from script library, so that it becomesglobal to a particular form?
17. How can the functions in script library be called from JS Header for web?Explain the process ?
18. Can Lotusscript script library be used for validation in UI Interface for webapplications?
19. Is Javascript case-sensitive?
20. Where does Javascript functions get exceuted?
21 What is CSS?
22. How can CSS be applied in a form ie on tables, fields etc.?
23. What are the different ways to get the handle of an object in Javascript?

Comments

  1. Hey Ashok!
    On question(4) you say "so you can 'hand-code' your HTML for special effects or some other purpose".
    I need to do eactly this BUT on a client application where the HTML is produced by a lotusscript agent: I click a button, the agent runs and produces the HTML. I can't show it on that client form, though...
    This is bread and butter in web applications but it seems to be quite difficult in Notes apps.
    Any help?

    ReplyDelete

Post a Comment

Popular posts from this blog

Lotusscript to establish ODBC connection:

The script, when executed from a button, will create a new record in a specified ODBC data source, attempt to save the new record and display a message indicating whether the operation was completed successfully. If the operation is not completed sucessfully, it is likely that either your data source is read-only or your ODBC driver does not permit updates to the data source. Important: Complete each of the four steps below before running the script. 1. Create a new agent and add the following UseLSX command to the Options event: UseLSX "*LSXODBC" 2. Add the following script to the Initialize event of the agent. NOTE: Do not add the 'Sub' and 'End Sub' lines. Dim ui As New NotesUIWorkspace     Dim uidoc As NotesUIDocument     Dim doc As NotesDocument     Dim connection As ODBCConnection     Dim query As ODBCQuery     Dim result As ODBCResultSet         Set uidoc=ui.CurrentDocument ...

Commom Interview Questions for a Domino Developer

1. To find if a particular item exists in lost of items what commands are there in formula lang and lotusscript? Ans : Formula : @Contains; @IsMember Script : Instring 2. Difference between @UserRoles and @UserNamesList Ans : @UserRoles - Roles in the ACL which the user has @UserNamesList - Groups in the ACL to which the user belongs to 3. If there are multiple commands to be executed on a click of a button in formula lang, how will you do it And : @Do(@Command1;@Command2.....) 4. What is the difference between @DBColumn adn @DBLookup. Where will each of them be used? 5. File upload using Formula language? And : The field to which the file is uploaded should be a Rich Text Field. Command is @@Do(@PostedCommand([EditGotoField]; "Field Name");@PostedCommand([EditInsertFileAttachment])) 6. On click on a button in the left frame, open a view in the right frame. Ans : @SetTargetFrame("FRAMERIGHT"); @Command([OpenView];...