Why is DW giving my templates a .asp extension?

All of the sudden, when I save a file as a template, Dreamweaver is giving it a .dwt.asp extension, not just the .dwt extension. I'm thinking it's just a setting somewhere, but I can't figure it out. Does anyone have any ideas? I can change the file name and everything seems to work, but this is just new in the past couple of days and I haven't a clue.
Thanks!

Maybe it would help to clear your site 's cache and/or if you are on a windows system clear this file:
c:\users\{username}\appdata\roaming\adobe\dreamweaver cs 4\{land code}\configuration\winfilecache-{numbers}.dat
On apple I don't know the directroy but it's the same file.
M.R.Biesheuvel
www.sportjegeestgezond.nl

Similar Messages

  • Why not nokia giving belle or other better update ...

    why not nokia giving belle or any other update for 5233, 5235, 5230
    Many of indians nokia phone user has disspointed after seeing android, and belle user interfence for other phones and not for nokia 5233,35,30 phones . Many of nokia users disspointed after that many of nokia users moving to android and other phons and not for nokia after that,
    Why not nokia giving any update hor these phones ..
    Solved!
    Go to Solution.

    The devices you mentioned are symbian S60V5. These cannot be upgraded to Nokia belle or such. They have hardware limitations.
    In Love With My C6-01:Now running on Nokia Belle!

  • Why java is giving 'attempting to assign weaker access privileges'  error?

    Can some one can tell me why java is giving 'attempting to assign weaker access privileges' compile error while compiling Abhishekchild.java ?
    The two classes is :
    public class  Abhishek {
           void asd()
         System.out.println("hello");
              static String a;
              public static void main (String st[])
    public class  Abhishekchild extends Abhishek {
         private  void asd()
         System.out.println("hello");
              static String a;
              public static void main (String st[])
    }In my opinion, java compiler is showing the error , as method asd has public visibility in Abhishek. java so
    (i)it should be visble to all sub classes of Abhishek.java.
    But if we override this function in Abhishekchild.java, and change the visibility to private then it will not be available for child of Abhishekchild.java. But these children are also children of Abhishek.java*, but this violates rule (i).*
    So java shows a compilation error.

    public class Parent {
         public void asd() {
              System.out.println("Hello");
    class Child extends Parent {
         public void asd() {
              System.out.println("Hello from child");
         public static void main(String st[]) {
              Parent parentReference = new Child();
              // The reference 'parentReference' knows about Parent.
              // Parent has a public method asd, so below code looks ok.
              // But if child could set the method to private,
              // invoking the code below, would hit the object Child,
              // where asd() is not accessible - and everything fails.
              // Note - the compile visibility is checked according to
              // the reference, not the object itself.
              parentReference.asd();
    }See my comments in the code.
    - Roy

  • Why are there no label templates?

    Why are there no label templates with Pages?

    What Pages?
    Have you looked in the Print dialog of Contacts?
    Peter

  • I just tried to download sons of anarchy season 6 and it went into purchases then just disappeared... Why is it giving me trouble I have a cc on file

    I just tried to download sons of anarchy season 6 and it went into purchases then just disappeared... Why is it giving me trouble I have a cc on file

    Mavericks - reverting back from:
    https://discussions.apple.com/docs/DOC-6162

  • Why doesn't apple's safari support asp on internet pages?

    I wonder why doesn't apple's safari support asp?
    I am a new mac osx lion user for 6 six months. I'm not a computer speciallist but I know asp is widely used in the world since long time. this prevents me entering data and creating reports on many governmental, commercial and social internet sites. I'm realy fed up with that.
    there may be some technical and stability issues but this prevents mac osx lion users from doing their work. Apple has to listen us. we want asp.

    Hi...
    Try using a different browser like Firefox or Chrome.
    Mozilla Firefox Web Browser — Free Download
    Google Chrome

  • Opening files with .asp extension

    Since few weeks I am not able to open files with .asp extension.
    There was no problem over a long time, maybe the issue started with the actualization of OS X, moving to OS X 10.6.5 or with the actualization of Safari, moving to 5.0.3.
    Please let me know what I can do to re-open .asp files.
    Thanks

    Hallo Everybody, I have a similar issue.
    I run a Macbook Pro, and I operate into an internet based ERP system (managed by microsoft machines)
    In this system, which completely works through internet, I can create orders, invoices, then I tap "create invoice" and get a pdf file.
    Till few weeks ago it worked smoothly: I tapped "create invoice", the system worked and few seconds later adobe reader opened showing me the file from a .asp document. Now it doesn't work anymore.
    If I tap "create invoice", adobe reader doesn't do anything, but the .asp file is created into the "download" folder with the name "print preview", so I have to go into that folder and manually open the file.
    This leads in a waste of time and some confusion if I issue many documents at a time, which I find all mixes up with names "print preview 1" - 2 - 3...
    Does anybody have a clue on how I can open the .asp files into adobe reader automatically as they are created?
    Thank you in advance

  • Why it is giving compilation error

    byte b = 50;
    byte c = 50*2; //giving compilation error
    why????

    It shouldn't give you compilation errors. It compiles
    fine using JDK 1.4Maybe an earlier compiler (one that doesn't bother to actually check the int literals) is griping about a potential loss of precision, would be my only guess...

  • Why is the giving me this error (method does not return a value) PLEASE !!

    I have this code and it is giving me this error and I don't know how to fix it
    can anyone out there tell me why
    I have included the next line of code as I have had problems in the curly brackets in the past.
    The error is
    "Client.java": Error #: 466 : method does not return a value at line 941, column 3
    Please help
    THX TO ALL
    private Date DOBFormat()
        try
          if
            (MonthjComboBox.getSelectedItem().equals("") || 
             DayjComboBox.getSelectedItem().equals("") ||
             YearjComboBox.getSelectedItem().equals("")){
          else
            String dateString = StringFromDateFields();
            SimpleDateFormat df = new SimpleDateFormat("dd/mm/yyyy");
            Date d = df.parse(StringFromDateFields());
            System.out.println("date="+d);
            return d;
        catch (ParseException pe)
          String d= System.getProperty("line.separator");
          JOptionPane.showMessageDialog( this,
           "Date format needs to be DD/MM/YYYY,"+ d +
           "You have enterd: "+ StringFromDateFields()   + d +
           "Please change the Date", "Date Format Error",
           JOptionPane.WARNING_MESSAGE);
          return  null;
      //File | Exit action performed
    public void jMenuFileExit_actionPerformed(ActionEvent e) {
      System.exit(0);
      }

    Fixed it needed to have a return null;
    this is the code
    if
            (MonthjComboBox.getSelectedItem().equals("") ||
             DayjComboBox.getSelectedItem().equals("") ||
             YearjComboBox.getSelectedItem().equals("")){
            return null;

  • HT3726 why are all of the templates in Spanish?

    Why are all the templates and text in Spanish on Pages

    It is Latin nonsense, placeholder text to show the layout. Click in a text box and start typing. Your text will replace it.
    Regards,
    Ian.

  • Why I'm giving up my Q10 to go back to the Bold 9900

    Hi,
    I wanted to take this opportunity to detail my experiences and frustrations with the Q10 and why I have decided to return to the Bold 9900.  I'd like to stress that these opinions are my own.  I recognize that the industry has a whole has embraced the touch screen concept.  But I believe this change isn't right for everyone as I hope to demonstrate below.
    I am a very stanch supporter of the traditional Blackberry.  I work in IT for a nearly 2,000 user organization.  We have 36 IT people on staff and I am the only one still using a Blackberry.  I choose to remain with my Bold 9900 for the sole reason that it is the most efficient device I have ever used.  Every operation I'd ever want to perform with the device is only 2 or three physical clicks away and perhaps just as importantly, thanks to having physical buttons, those actions are performed in exactly the same way every time. It becomes muscle memory and can be performed regardless of the current state of the device.  When the Q10 was announced, you'd be hard pressed to find someone more excited then me.  I very much wanted this phone to succeed.  
    I have now been using the Q10 for a few days now and have encountered a number of what I personally consider show stopper functionality issues.  These are issues that I believe are not simply related to my lack of familiarity with touch screens but an issue innate to the touchscreen concept itself.  Some issues could be resolved through software updates while others simply cannot.
    I have detailed a few of the more pressing frustrations I have below.
    - First and foremost, I use an application on the 9900 called "ShortcutMe" by Fonware.  This application allows you to write custom macros and assign them to any key on the keyboard.  This provides a massively increased efficiency.  From any application I'm in, I can press the same 3 physical buttons to have the phone launch anything I want (End Key to get to the main menu, space bar to activate shortcut me, the letter that matches up to the macro).  For example, I have macros to quickly launch the flashlight as well as more complex macros to automatically toggle between enabling and disabling Caller ID.  I decided to swtich devices when I discovered that Shortcutme now exists for OS10.  Immediately after purchasing it however I received an email from Fonware stating that Blackberry currently doesn't allow access to any of the API's required for the macro functionality to work.  They apologized.  Because of these closed APIs, I can no longer map all of the functions I use the phone to physical keys which completely negates one of the biggest benefits there are to having an always present physical keyboard
    - In messages, if you want to select "mark prior read" you can't because due to the nature of a touch screen, there is no concept of highlighting an object. A compromise exists where you click and hold on the date and then select "mark as read" from a popup menu that appears. However, this only appears to work for the start of each day. If you want to select all messages before a message in the middle of the day, you cannot. Additionally, the compromise forces you to select messages one at a time by tapping on them. I often receive bursts of automated alert messages that could be 30 or more messages in a row. With a track pad, I was able to quickly select just those messages mark them as read. I see no way of completing the same task as quickly with a touch screen
    - A purely touchscreen interface demands restraint on behalf of the developers when building UI elements to provide a consistent experience. For example when you hold the phone in your hand, your thumb naturally rests on the keyboard and is within reach of all the keys, and where the trackpad and physical keys were. It would also be within reach of the bottom right of the screen where the back button often -- but not always -- is. For example, if you scroll through your messages and select one to read, the back button is at the bottom of the screen in easy reach. However, if you now try to reply to a message, the cancel button (which performs the same operation as back) is now at the physical top of the screen which requires you to completely shift how you're holding the phone to reach.
    - Like all touchscreens, if your finger is slightly touching some other portion of the screen and you try to select an option, the phone doesn't respond until shift the phone in your hand so that you're so that you're only touching the button you intended.  This results in unintended actions that simply cannot occur with a non-touch screen device.
    - You can no longer access internal memory as a USB mass storage device. I wanted to copy a traditional telephone ring tone to the phone (because one is no longer included) but could not simply copy the file to the device through Windows Explorer. I had to insert my microSD card before this was possible.
    - Blackberry is not allowing apps to run in the background which means my two must have apps (Shortcutme and Bebuzz) don't work as intended. In the case of Bebuzz, you're forced to leave an active frame opened with it to function.
    - The applications shortcuts functionality no longer exists. For example, I can no longer press L to get to the calendar or hold K to lock the device.  Instead it searches the device.  On OS7, I could get to the same functionality by first pressing s.  However, it was much more common that I wanted to jump between applications so why this is not a toggleable option is beyond me.  (Admittedly, I do know why.  OS10 is a completely different code base which means all of the subtle optimizations made to the legacy code base no longer exist and they are starting from scratch.)
    - Memopad was replaced by Remember.  Memopad was by design a simple application that served only one purpose -- quickly make notes about something quickly.  Memopad was instant.  Blackberry Remember admittedly has many more features but those features come at a cost of efficiency and usability.  If these features were desired, they could have been made available in a separate app.  There is a reason that notepad exists on Windows despite almost all systems also shipping with Word or similar.  Also, when you do finally use the Remember application to enter text, you only get a tiny portion of the middle of the screen to actually see your entry.  On the Bold 9900, you can see 12 lines of text. In remember, that is reduced to just 5.
    - It is possible to use every function of the Bold 9900 with one hand thanks to the trackpad.  This is far more difficult with the Q10.  For example, try selecting and copying text that exists at the top of the screen on the Q10 with one hand. 
    - Playing solitaire and other card games on the Bold 9900 is simple enough to do and can be done with one hand and with little physical motion.  Trying to play Solitaire on the Q10 is more cumbersome as it requires two hands in order to comfortably reach both sides of the screen.  You also end up blocking the card you are trying to select with your finger.  This may seem like a more esoteric example but its representative of the kinds of issues you have when trying to use a touch only interface
    I could go on but I think it's clear where my frustrations lie.  Blackberry has decided to abandon their most distinguishing competitive edge (the keyboard) and instead embrace the touch screen concept just like everyone else.  And that is a shame.  
    If anyone shares any of these frustrations, please reply to this message and share your experiences.  I'm curious if I am as unique in my opinions as it sometimes feels like.
    Thanks
    - Robert Vance

    Hi Robert,
    I have a similar background and thought process as yourself. I have been a die hard Blackberry guy. I have had
    (2) 8250's (with the side roller)
    (2) 8330 Curve
    8900 Torch
    (3) Playbook's
    My kids (2) 9360 Curve
    9900 Bold
    Tried the Z10 and now the Q10.
    I am normally very patient with technology. My rule is that I do not use the device until I have read the ENTIRE manual before I use it for the first time.
    After using the Z10 for 2 weeks and the Q10 for a week, I will be going to a Samsung Galaxy S4. I am incredbily frustrated and not even sure that the S4 is the right solution.
    Nothing can beat the track pad for efficency. My 9900 is simply bogging under the pressure of my use (over 5000 contacts and hundreds of pages of notes). I even deleted everything I can off the 9900 to make it last as long as I could.
    The Q10 simply lacks the refinement we were promised. At it's core, it is not effecient and I cannot see how they will make it better. Calendar additions used to be 2 clicks, now it is 5 and I have to wait for things to load. On top of that, my bridge does not work properly (no contacts, no email, no calendar, no notes).....what is the point?
    Here is what I cannot do well or at all
    Select specific text
    back out of certain areas without closing the app and going back in
    Easily tell what email address I am sending from (I have 5 address for various reasons)
    Shorcuts (that might just be me not doing enough research)
    Easy notes (although I did find an app, but it will not hook up with my Outlook)
    Google Maps
    Enter Calendar events quickly
    Mark multiple messages read or unread
    Turn my phone off and have the alarm go off in the morning (Bedside mode is the new "OFF")
    Entering Bedside mode is not easy (That I have found)
    While I am on the subject of the Playbook, it has become very slow and almost unusable. Even something as simple as bringing up the keyboard or turning down the volume has a huge delay.
    I have even developed and built a company on using the Playbook, but am now thinking of abandoning the entire platform....I live near Waterloo (the home of Blackberry).
    I am VERY frustrated and do not know what to do. I feel like I cannot go back to the 9900 due to the slow downs and lock ups that I was experiencing. I WILL NOT go to iPhone (my kids have had several iDevices), my only choice seems to be the S4......
    Nathan

  • Why do links in the template change location to 'file:///'...on the pages created from the template?

    Im not sure what I am doing wrong but I am building a portfolio site from a template that I downloaded online.
    The site is working and I am slowly converting it from the template content to the content that I want.
    As I will be editing the site and adding more pages I decided to try and add the Header, footer and main navigation bar as a template with another gallery container and navigation as an option on the template.
    I thought that it was working fine untill I noticed that the links on the pages created using the template are showing as follows,
    instead of the links that were in the template that show as,
    Is this something that will change when I upload the site with the template or have I done something wrong making the links?

    Usually this happens when you don't use a proper Site Definition, or if you have files outside your defined site folder.
    Have you defined your site properly?
    http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/

  • Why my check box in template show out is rhombus?

    Hi~~
    I want use check box in my template, it result is OK .
    But it shows rhombus, not standard style 「check box」.
    Is font problem?
    I want 「check box」style , not rhombus .
    How can I do ?
    Emily, Thanks

    This check box is picked up from Wingdings font style,
    thsi font is not shipped with XMLP product.
    Alternatively
    you can map it in the Oracle Apps
    through the configuration or have property in Template
    In Template
    Go File ..... Property and Custom tag
    you'll see the property setting required for the check box.
    name: rtf-checkbox-glyph
    type : Text
    value : fontname;9746;9746
    value syntax is like
    fontname;
    <unicode font number for true value’s glyph>;
    <unicode font number for false value’s glyph>
    Use this,
    http://www.alanwood.net/demos/wingdings.html
    Visit this link , check for the character representation for 9745, 9746 in unicode is
    and the one i have said above, is Check box , check & unchecked characters.
    It should work.
    in Wingdings
    for sample "Wingdings;0168;0254"
    168 represents ¨     168
    254 represents þ     254
    This will come in the report.
    Or else same property can b set in Apps level
    in the configuration page, check for administration
    general
    RTF Templates ==> Characters used for checkbox
    set the value , as i said .
    One thing , i was not able to find is
    documentation says
    use this
    "Albany WT J;9746;9745".
    i found link
    http://www.alanwood.net/demos/wgl4.html#w2500
    Using special characters from Windows Glyph List 4 (WGL4) in HTML
    i was not able to find the character for the corresponding number.
    will investigate further.

  • Let me first say the DW CC SUCKS!!!  Why can't I edit templates in CC that I created in DW CS6?

    When I try to edit templates, ANY template, that I created in CS6, I can't.  The tool bars are grayed out.  The properties panel is grayed out.  It acts as though it is in LIVE mode, but it isn't, or not that I can see.  I'm trying to edit a link in my footer, but every time I try to place the cursor on the link to select it, the cursor is a pointing finger.  I can't select it to edit it, unless I go edit the code.  This brings up another question about editing templates.  This involves the same link in the previous question.  In CS6, I edited this link with the new link to a page.  When I SAVE ALL, I get the box asking if I want to update all pages that use the template, I say yes.  The code reflects the change, but the link doesn't change in LIVE view or Preview in a Browser.  It still tries to load the old page, which I have deleted.  This happens in DW CS6 too.  I want to use CC because I am paying for it.  But I have found it fights me every inch of the way.  Luckily I have CS6.  But it isn't very good either.  Any ideas?

    See screenshot:  If you can, switch to Design view.
    If you can't, you must be using Templates based on Fluid Grid layouts. See link below:
    Provide "Design View" for Fluid Grid Webpages
    Nancy O.

  • Why am I prompted to download the .asp file whenever I attempt to view an asp page in a browser?

    I am doing tutorials on dynamic pages in Dreamweaver 8. I am doing both php and asp. When I preview an asp page, for instance, it displays properly - from 'Localhost.' When I enter the url of the page in a browser, however, the 'Do you want to open or save this file?' prompt appears. (See attachment 'Doc1')
    What gives? Thank you.
    The same thing happens with php pages. I can preview them ok. But when I try to view them in the browser on the WWW, instead of page content, I get the prompt to download the file.
    Message was edited by: pontius11

    your web server is not setup to process asp files.

Maybe you are looking for

  • Compressor 3 crashes on launch under Snow Leopard 10.6

    Hi all, I am hoping that someone can help me. Everything was going along fine until yesterday when I installed 10.6 Snow Leopard on my 2 x 3GHz Dual-Core Mac Pro. When I try to launch Compressor 3 (not the new 3.5, which I ordered last night out of f

  • Preview pane and email view problem

    Hi  since installing the latest software update I no longer have the option to have my preview pane on the RHS as I prefer nor do I have my inward emails separated by blue lines as before also. I have tried the plugin fix but no joy. What next??

  • How to invoke Internet Explorer and Adobe using OLE2

    Hi all We have to call IE and adobe using OLE2. how to do that ? Is it like how we do for word or excel. We tried that way but not working. e.g: app := OLE2.CREATE_OBJ('IExplore.Application'); please help us. Thnx and regards Sriram

  • Multiple Audio Inputs

    I have two USB microphones which I use for home studio recording. I want to have two different 'Real Instrument' tracks, recording from each different microphone (one track recording from one mic, and the other track from the other mic), but in the G

  • Export time in Premiere/ME 130+ hours

    Adobe Premiere 6.0.0 and Media Encoder 6.0.0.382 on Mac 10.6.8 using SSD drive for progams and OWC harddrive for projects/files. I am working on CS6 CC, I finished a 20 minute edit. It has minor levels/3 way color, some warp stabilizer--but nothing e