Some dynamic pages rely on other files to work properly. You must upload all related files, including server-side includes and dependent files such as image files and JSP class files, to the folder you defined for processing dynamic pages (see Specifying where dynamic pages can be processed). Dreamweaver does not automatically copy dependent files to the folder when you enable Live Data in Design view.
NOTE |
|
Live Data supports code in server-side includes and application files such as global.asa (ASP) and application.cfm (ColdFusion). Make sure to upload these files to the server before turning on Live Data. |
The Site panel expands to full size.
The application servers root folder appears under Remote Site.
You need to do this only once for your site unless you add more dependent files, in which case you must copy them to the folder too.
To generate dynamic content, some pages require parameters from the user--for example, a page needs the ID number of a record to find and display that record. Without that data, Dreamweaver cannot generate dynamic content to display in Design view.
If a page expects parameters from the user, you must provide the parameters as follows.
The Live Data Settings dialog box appears.
For more information, see Setting the Live Data Settings dialog box options.
If you specified the GET
method in the Live Data Settings dialog box, a text box appears on the Design view toolbar. Use this text box to enter different URL parameters; then click the Refresh button (the circle-arrow icon) to see how the parameters affect the page.
Enter each URL parameter in the following format:
name=value;
In this format, name
is the URL parameter name expected by your page and value
is the value held by that parameter. For more information, see URL parameters.