You can generally determine the effective link by looking at the URL after the document begins to display, or you view the document properties to determine the URL. But so what? If you paste this URL into the browser, you'll be stuck with the same process as before: the browser will try to open the document.
One answer is to use a form to create a link to the URL. That's the tack taken by this project.
If you can't right-click on a link, follow it, copy it from the browser window or page properties, then... <p> <cfparam name="form.Getdoc" default=""> <form method="post"> Copy the URL, then paste it below as text and Submit.<br> <input name="Getdoc" type="text" size="75"> <input name="Doit" type="submit" value="Submit"> </form> When the URL appears below, right-click it to see a menu that lets you save it to your computer. <p> <cfoutput><a href="#form.Getdoc#">#form.Getdoc#</a></cfoutput>
Right-click the link. If you select "save target as" (or "save link as" for Netscape browsers), you can save the document for more effective review. If the problem is having the document come up in a small frame or with no window controls, you can use the same answer. Simply fill in the URL, press submit, right-click on the link, and select "Open in new window". By the way, this works just fine from your desktop development environment. You don't have to deploy this tip on a public Web server to take advantage of it. =Marty=