Deploying to ASP

Procedures performed by the deployment controller for ASP

When you deploy to ASP, the controller performs several additional procedures during the deployment process:

To allow your Web pages to use the predefined connections, you need to create a data source for each connection if one does not already exist. The DSN name for each data source must match the DSN specified in the ConnectionString session variable.

Targets using the Web Target object model

When you deploy a Web page that uses the Web Target object model, the deployment controller automatically includes an object model file in the page. When you deploy to ASP, the controller for ASP generates a server-side include (<!--#INCLUDE -->) statement that specifies the name of the target in the path to the object model file, as shown in the following example:

<!--#INCLUDE VIRTUAL="/MyProject/ObjMod.js"-->

Any references to the Web Target object model do not work when you deploy to ASP unless the name of the virtual mapping you deploy to matches the name of the target exactly. So, the <!--#INCLUDE --> statement shown above would work only if the virtual mapping were MyProject.

Server-specific setup steps

After deploying the target to an ASP Web site, you may need to perform some additional procedures to get your Web application up and running. For detailed instructions, see the documentation provided for your Web and application servers.