View comments | RSS feed

Dreamweaver CS3  |  Go to CS4 Help

User communities

User communities feature forums, blogs, and other avenues for users to share technologies, tools, and information. Users can ask questions and find out how others are getting the most out of their software. User‑to‑user forums are available in English, French, German, and Japanese; blogs are posted in a wide range of languages.

To participate in forums or blogs, visit www.adobe.com/communities.


Comments

Comments are no longer accepted for Dreamweaver CS3. Dreamweaver CS4 is the current version. To discuss Dreamweaver CS3, please use the Adobe forum.

Comments


roobannadan said on May 31, 2007 at 10:02 PM :
Hi all

I'm using Dreamweaver to create and manage my ASP.net 2 site.

On my ASP.net pages I need to have a different declaration at the top of each page, e.g.:

<%@ Page Language="VB" AutoEventWireup="true" CodeFile="annual-travel-insurance.aspx.vb" Inherits="travel_insurance_annual_travel_insurance" %>

<%@ Page Language="VB" AutoEventWireup="true" CodeFile="extended-trip-travel-insurance.aspx.vb" Inherits="travel_insurance_extended_trip_travel_insurance" %>

It was my understanding that Dreamweaver would leave alone any code outside of the HTML. However, whenever I update my template, the ASP.net declarations are removed by Dreamweaver.

What can I do?
chucknado said on Jun 1, 2007 at 10:56 AM :
Check to see the following: In Dw, select Edit > Preferences, then click the Code Rewriting category. Make sure the ASP.NET 2 filename extensions are included in the list beside "Never rewrite code".
citation999765 said on Feb 11, 2008 at 8:02 PM :
Hello Everyone,

I am very new to Dreamweaver. At the moment, I have files in the remote site, but don't know how to copy them to the local site. Can someone help me with this please?

Thanks
jonmichael said on Feb 12, 2008 at 11:10 AM :
For more information about managing files, see this LiveDocs page:

http://livedocs.adobe.com/en_US/Dreamweaver/9.0/WSc78c5058ca073340dcda9110b1f693f21-7f05.html
No screen name said on Mar 26, 2008 at 4:16 PM :
Hi,
Could someone tell me why blue outlines are showing up around images
that I have made into links (and how to make it stop)? It doesn't happen in
Safari, but it does happen in (at least) Internet Explorer, Mozilla, and Firefox.
Thanks.
chucknado said on Mar 26, 2008 at 4:28 PM :
Click the image and, in the Property inspector, set Border to 0 (zero). Alternatively, add the "border=0" attribute to the <img> tag in Code view. Example:
<img src="images/edit.gif" border="0"/>
LoriHC (Dreamweaver Team) said on Mar 31, 2008 at 7:14 AM :
This is the default behavior for linked images (and text, for that matter): outline (or underline) using the color defined for links. If no color is defined, the default color is used. In most browsers, this is blue.

If you don't want link borders around your images, you can use CSS styles to specify no border

<style type="text/css">

img { border: 0; }

</style>

This means "no border on any img tags". You can create more specific styles to apply borders only to certain images after this rule if you like. See the chapter on creating styles for more info.

 

RSS feed | Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/en_US/Dreamweaver/9.0/WS9D42373F-8FD4-469e-B4AD-E3FC9A4CD086.html