Coding postIt.asp

Code in postIt.asp first checks the content of AUTH_USER in the ServerVariables collection. This code is identical to code in viewData.asp; Coding viewData.asp explains how the user is authenticated.

Next, postIt.asp instantiates the SQLXML object and calls the PostActions method, passing ASP objects (Request and Response) and the Eval_Connection string of the Application object as parameters. The following code fragment illustrates this process:

Set objPostIt = Server.CreateObject("Litware.SQLXML")
objPostIt.PostActions Request,Response,Application("Eval_ConnectionString")

Implementing Table Actions and PostActions: Where the Data Writing Process Begins further describe how the PT application adds, changes, and deletes records in the Eval database.