Validating Pages that use InContext Editing tags

When will be possibile validate the pages with InContext Editing tags, when running it through the W3C validator?

Hello SallivanV2,
Here are a couple of links to unobtrusive Spry Data samples:
http://labs.adobe.com/technologies/spry/samples/dom_utils/unobtrusive_spry_data.html
http://labs.adobe.com/technologies/spry/samples/dom_utils/unobtrusive_spry_data2.html
But I think you might be better off posting the question in the Spry Framework for AJAX forum, since I'm certainly not the foremost expert on Spry:
http://forums.adobe.com/community/adobe_labs/spry_framework_ajax_prelease
I hope this helps!
Best regards,
Corey

Similar Messages

  • Using Incontext editing with PHP pages

    Hi,
    Has anyone established whether you can use incontext editing
    with php pages. My site works perfectly except for the pages i have
    created in php. The reason i have used php is that they are secure
    that only certain users can access.
    The error message that comes up is: "No input file specified.
    " But the page is up.
    Thanks in advance for any help anyone can provide.
    Chris

    Hello Chris,
    Yes, it is possible to edit PHP pages with InContext Editing,
    however InContext Editing should not be used to edit dynamic
    content in PHP pages. If you edit dynamic content that is loaded
    into an InContext Editing editable region, it will be overwritten
    as static content.
    In regards to the problem you're experiencing, it appears to
    be an issue with the HEAD http request. InContext Editing is using
    HEAD requests to check the existence of the draft and published
    versions of the current page (in your case, InContext Editing is
    making a request for products_bedroom_draft.php). If those calls do
    not work as expected (the HEAD should return status code 200/304 if
    the checked page exists, 404 otherwise) then you will experience
    this behavior.
    A HEAD http request for products_bedroom_draft.php is
    returning a 502 Bad Gateway status code which is not what InContext
    Editing expects.
    Please contact your web hosting provider for assistance with
    this server issue. This will likely require changes in web server
    configuration.
    http://www.adobe.com/go/kb406749
    Please let me know if you need further assistance.
    Best regards,
    Corey

  • Hidden Report Viewer Confiugration Error on aspx pages that use report viewer web control

    I try to fix the problem. The error below is embedded on aspx pages that use report viewer web control. Please note that the div element is hidden, and the reportviewer is displaying correct contents.
    Div element hidden on aspx page
    <div id="ReportViewer1_HttpHandlerMissingErrorMessage" style="border-color:Red;border-width:2px;border-style:Solid;padding:10px;display:none;font-size:.85em;">
    <h2>
    Report Viewer Configuration Error
    </h2><p>The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add &lt;add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; to the system.web/httpHandlers section of the web.config file, or add &lt;add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /&gt; to the system.webServer/handlers section for Internet Information Services 7 or later.</p>
    </div>
    I tried adding the two elements to web.config, but to no avail.
    Add below to system.web/httpHandlers
    <add verb="*" path="Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    or add below to system.webServer/handlers for Internet Information Services 7 or later.
    <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    The required assemblies below are installed under C:\Windows\assembly folder. I have installed both Microsoft ReportViewer 2010 Redistributable, and 2008 SP1.
    Microsoft.ReportViewer.WebForms, version 10
    Microsoft.ReportViewer.Common, version 10
    Below is the whole web.config:
    <?xml version="1.0" encoding="utf-8"?>
    <!--
    For more information on how to configure your ASP.NET application, please visit
    http://go.microsoft.com/fwlink/?LinkId=169433
    -->
    <configuration>
    <connectionStrings>
    <add name="ApplicationServices" connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnetdb.mdf;User Instance=true" providerName="System.Data.SqlClient" />
    </connectionStrings>
    <appSettings>
    <add key="car" value="myCar" />
    <!--<add key="ReportViewerServerConnection" value="WebForm.Lab.ReportConnection, WebForm" />-->
    </appSettings>
    <system.web>
    <httpHandlers>
    <add verb = "*" path = "Reserved.ReportViewerWebControl.axd" type = "Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    <!--<add path="Reserved.ReportViewerWebControl.axd" verb="*" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" validate="false" />-->
    </httpHandlers>
    <compilation debug="true" targetFramework="4.0">
    <assemblies>
    <add assembly="Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="Microsoft.ReportViewer.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="Microsoft.Build.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    <add assembly="System.Management, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A" />
    </assemblies>
    <buildProviders>
    <add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </buildProviders>
    </compilation>
    <authentication mode="Forms">
    <forms loginUrl="~/Account/Login.aspx" timeout="2880" />
    </authentication>
    <membership>
    <providers>
    <clear />
    <add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices" enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" applicationName="/" />
    </providers>
    </membership>
    <profile>
    <providers>
    <clear />
    <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
    </providers>
    </profile>
    <roleManager enabled="false">
    <providers>
    <clear />
    <add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
    <add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
    </providers>
    </roleManager>
    <pages>
    <controls>
    <add tagPrefix="ajaxToolkit" assembly="AjaxControlToolkit" namespace="AjaxControlToolkit" />
    </controls>
    </pages>
    </system.web>
    <system.webServer>
    <modules runAllManagedModulesForAllRequests="true" />
    <validation validateIntegratedModeConfiguration="false" />
    <handlers>
    <add name="ReportViewerWebControlHandler" preCondition="integratedMode" verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
    </handlers>
    <httpProtocol>
    <customHeaders>
    <remove name="X-Powered-By" />
    </customHeaders>
    </httpProtocol>
    </system.webServer>
    <system.serviceModel>
    <bindings>
    <basicHttpBinding>
    <binding name="WebService1Soap" />
    </basicHttpBinding>
    </bindings>
    <client>
    <endpoint address="http://localhost:58269/WebService1.asmx" binding="basicHttpBinding"
    bindingConfiguration="WebService1Soap" contract="ServiceReference1.WebService1Soap"
    name="WebService1Soap" />
    </client>
    </system.serviceModel>
    </configuration>
    Any idea?
    Update:
    IIS is7.5, AppPool is Integrated.
    I have tried below, none of them works:
    1) Add it only to system.web\httpHanders. Changed AppPool to classic, still got hidden error.
    2) Add it only to system.webServer\handlers. Integrated mode,still got hidden error.
    3) Add both to both element. Integrated mode, still got hidden error.

    Hi Kingofwebguru,
    According to your description, when you use reportviewer control, you got the error message: The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file.
    To troubleshoot the problem, please refer to the following steps:
    Click Start, click Run, then type InetMgr.exe and click OK.
    Click plus sign next to server name to expand it.
    Click Application Pools in left pane.
    In Application Pools list, click DefaultAppPool.
    In the Actions pane, in Edit Application Pool section, click Edit Settings to check the Pipeline mode.
    Configuration settings for the HTTP handlers are specified in the system.web/httpHandlers element and the system.webServer/handlers element. of your application Web.config file. The handler specified in system.web/httpHandler is used by Internet Information
    Services (IIS) 6.0 or IIS 7.0 in Classic mode, whereas the handler specified in system.webServer/handlers is used by IIS 7.0 in Integrated mode. To use IIS 7.0 in Integrated mode, you must remove the HTTP handler in system.web/httpHandlers. Otherwise, IIS
    will not run the application, but will display an error message instead.
    For more information about Web.config Settings for ReportViewer, please refer to the following document:
    http://msdn.microsoft.com/en-us/library/ms251661.aspx
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu
    If you have any feedback on our support, please click
    here.
    Wendy Fu
    TechNet Community Support

  • Pages that use flash freeze up in mavericks.

    When viewing a page that uses a flash plug-in, the page will freeze after a few seconds of inactivity by me. It will start again if I touch my mouse or track pad over the area, but that's no solution. That's terrible.
    I thought maybe it was a new setting, and I unchecked the option to stop plug-ins to save power when possible, but that didn't do anything.
    This isn't ruining my life or anything. I'm just playing little flash games like Adventure Quest, and zOMG, but it's irritating.
    Thank you for reading.
    What is the solution?

    Go step by step and test.
    1. System Preferences > Other/ Flash Player > Advanced >  Delete  All
         Press the "Delete All" button
         Install Adobe Flash Player.
        http://get.adobe.com/flashplayer/
        Follow the prompts.
        Quit Safari.
        Restart computer. Relaunch Safari.
    2.  Enable Plug-ins
        Safari > Preferences > Security
        Internet Plug-ins >  "Allow  plug-ins"
        Enable it.
        Press " Manage Website Settings" button for more options.
    3. Check  whether you are currently  in  YouTube HTML 5 trial.
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box beside
       "You are currently in the HTML5 trial".
    4. Reset Safari.
        Click Safari in the menu bar.
        From the drop down select "Reset Safari".
        Uncheck the boxes beside all items.
        Check the box beside "Remove all website data".
        Click "Reset".
    5. Turn off Extensions, if any.
        Safari > Preferences > Extensions
         Now try YouTube.
    Best.

  • Problem updating pages that use .dwt file

    So i have 45 files that all use the same .dwt file.  Usually when I make a change to the template and go file > save it asks me if i want to update all pages that use that specific .dwf file.  For some reason it doesn't show the pages that do.  Although if I go to the specific page for example contact.html and do a Modify > Templates > Apply template to page, it applys the changes, and then once i make a change to the .dwt file and do the File > Save, contact.html now appears in the section of files to be updated.  I do not want to go thru every page and manually apply the template does anyone have any information that could help me out? thanks
    G8ofH8

    I do not want to go thru every page and manually apply the template does anyone have any information that could help me out?
    However, that would work.
    It sounds like your site cache has become corrupted.  Try the following -
    1.  Open DW's Site manager, select the site name, and click on EXPORT (make sure you opt to export the FULL site defintion including FTP info)
    2.  Export the site definition to a KNOWN location on your hard drive
    3.  With the site name still selected in Site manager, click REMOVE to remove that site from your list of definitions
    4.  Import the site definition you just exported - that should solve the updating problem
    Does this heal things for you?

  • Lost prompt to update pages that use template..

    Yes I know I should not use templates but I do on very small sites with under 10 pages. When making adjustments to the templates I used to get a prompt asking me if I want to update pages that use that template, but I no longer get that. I must have changed something but I am wondering how I can change it back. I can manually update but I always forget and I do not wantto go that route....anyone know how I can get that prompt back to update pages that use template? Thanks much!

    Well you have suggested SSI's before instead Murray....
    No, I've suggested SSI's instead of Library items, or a combination of SSI's and a template instead of nested templates, but I've never suggested using SSI's instead of templates, although it is a workable solution.
    I dont think it matters what I have in the code. It used to prompt me whenever I changed ANYTHING and had to save.
    I do.  However, try this simple test -
    1.  Create a new, blank HTML file.
    2.  Save it with FILE | Save as Template... (verify that the page is saved in the "Templates" folder)
    3.  Spawn a new child page from this template with FILE | New > Page from Template.
    4.  Save this page with any name you prefer.
    5.  Return to the template page and change the title from Untitled document to "Whatever".  Save it.  Are you prompted?  You should be.
    If you are not prompted then there is something systemically wrong with your DW installation.

  • I have a web page that uses a library item( !-- #BeginLibraryItem "/lib/topnav_main.lbi" -- ) . I

    I have a web page that uses a library item( <!-- #BeginLibraryItem "/lib/topnav_main.lbi" --> ) . I have made a change to topnav_main.lbi but don't know how to get it updated to the web page .  It is a heading and is used in many places. Can you help me?

    For websphere specific questions you might try:
    http://www.websphere-world.com/
    and the
    ibm.software.websphere.application-server.*
    newsgroups.
    Regards,
    S. Bro

  • Using InContexT editing, how do I give specific users editing writes to different pages within site?

    I have trawled around the support pages but although it mentions in passing that this is possible, I can't seem to find out how to do it.
    Can anyone point me in the right direction?

    Hello Rupert,
    This version of InContext Editing does not offer a method to specify access rights per pages. This is a functionality that we have in mind, but we don't have a set date for when it will be available.
    Thank you,
    Cristinel

  • Firefox is placing a cursor in the html window of pages that cannot be edited messing up the scroll option using the arrow keys

    Whenever I click in a window pane to scroll using my arrow keys it is placing a cursor in the window and scrolling off of it, instead of scrolling the entire page by using the arrow key it is scrolling by the cursor location inside of the window like a word document.

    Hit '''F7''' to turn off caret browsing.
    http://kb.mozillazine.org/Accessibility.browsewithcaret

  • Have you noticed the newest version 3.6.23 crashes frequently? Mine does it a few times a day on web pages that used to work fine before the upgrade.

    Since the last Firefox update was installed on my system, Firefox crashes several times a day on websites that used to be no problem. I have five crash report id's from the last two days (I usually don't send the report). Do you want all of them?
    I'm running Firefox 3.6.23
    I'm running MacOS X version 10.5.8, on 1.5ghz powerPC G4
    with 2gb memory and over 100gig still available on my 150gig hard drive.
    I checked for updates - there are no new updates.
    I tried sending feedback, but the feedback page said I had to be running the latest version of firefox. So I clicked on "latest version of Firefox", and got "Unfortunately the latest version of Firefox isn't compatible with your computer's operating system"
    The "learn more" link took me to http://www.mozilla.org/en-US/firefox/4.0/system-requirements/ which says that OS 10.5 is supported.
    So - how do I get back to my previous version of Firefox so it doesn't keep crashing
    AND/OR
    Is there a fix coming to stop all the crashing
    AND/OR
    What do I do about Firefox versions on my computer?
    Thanks

    That can be a problem with a plugin, possibly Java.
    * [https://bugzilla.mozilla.org/show_bug.cgi?id=573055 bug 573055] - Reproducible [@ nsNPAPIPluginInstance::InitializePlugin()] crashes / Java

  • Tracking pages that use color/inks?

    For those of you who produce projects in InDesign where some pages have color (or spot inks) available and others don't, what methods do you use to keep track?
    Anything clever?
    Generally speaking, for our tabloid newspaper that's imposed 4-up, we just track it on paper and hope that nobody screws up, and don't make any attempt to track it in InDesign. (For instance, a 16-page paper will probably have CMYK on pp. 1,8,9, and 16. And maybe also on pp. 3, 6, 11, 14.)
    I don't expect InDesign to do the math for me, but once we've decided, I wonder if we should try harder to track it. For instance, we could color pages in the pages panel, but that's fairly subtle. We could add some non-printing markers on the page and/or pasteboard, such as a big colored rectangle behind the entire page. We could do any of the above on master pages and have seperate master pages for the color pages.
    (Having seperate master pages for the colored pages seems like a good idea. It's not something we do right now, I guess, because there is no substantive difference in the recurring elements on pages that have color.)
    What do you do? Either in books or newspapers or other forms of print?
    What works and what doesn't work?
    What do you wish you could do?
    I worry that anything I've thought of so far is either too visible or too in-visible. Hmm, maybe a subtle transparency-like grid?

    Hmm, I didn't mean to anchor this question too firmly in newspaper-space. What drove the query was production of an 8x10 32-page magazine. Like Peter, we don't have too much trouble keeping track when its the newspaper, or perhaps it's because we have workflows that are well-adapted to figuring it out early. When we have fewer design constraints, suddenly it becomes more important.
    Peter wrote:
    For a book I did recently that was printed digital I ended up making a preflight profile that doesn't allow CMY or spot plates. It throws a warning with a link to a location, so I can just go through the list and make sure that I really intended to have a color page.
    Hmm. I guess checking after-the-fact is one way to go. I feel like we do a reasonable job with that, but I think we're 100% on catching any such screwups at the final proofing stage, it's just that we'd love to catch them earlier and have an easier way to tell in advance. Especially when our FPO photos tend to be color, which means b/w layouts will look color initially, so confusion is easy.
    Uwe:
    I notice you've provided a theoretical answer; while that's interesting, I would like to hear more about what you actually do.
    If working with single side pages one could imagine a script that constantly checks the layout window(s) for specific page names and would apply a greyscale color profile to "View/Proof setup/custom…" if on specified greyscale pages and a CMYK color profile if on specified color pages.
    I'm under the impression that greyscale color profiles don't work in InDesign.  Do you have a workaround for that?
    That's an interesting way to go. I don't normally work in Proof Colors mode I wonder if there's a performance penalty.
    And yeah, lack of facing pages support seems a definite problem...
    For facing pages we need a marker element that indicates "color page" or "greyscale page".
    It should be an object dependent on a specific page name and not part of a specific page or its content  (to be idependent when shifting pages around). I see no concept in InDesign to achieve this automatically in a constant way.
    I'm not too worried about how to have the page adornment be automatically implemented; I'm more interested in what kinds of page adornments people use and might be effective. At the end of my question, I suggested "Hmm, maybe a subtle transparency-like grid?" and I did run with that a little bit last night:
    I figured that a square grid too strongly screamed TRANSPARENCY so I'd try a hexagon grid. Unfortunately I don't think there's a great way to 2-color a grid of hexagons, and my first shading attempt doesn't work too well at the 10% opacity that is at. Still, I think it might be a workable way to go. But it might be too distracting. Not sure...
    Maybe a startup script that interacts when page names are changing or pages are shifted around is doable.
    I don't think it's too tough for a script in the idle loop to notice when pages are changing and to, say, change which master page is applied or pop up a dialog noting that. But I think I'm more interested in the UI for the designer once the pages are set, rather than the interface for changing the adornments. Because if I can't come up with a useful adornment, the rest doesn't matter.

  • JSP on BEA  Weblogic: random error when loading a jsp page that uses a Bean

    Hi!
    I wrote a simple jsp page that stores a String in a JavaBean, and then forwards to another jsp page to display that String. The jsp pages are deployed on a BEA Weblogic 6 Server, but I get a weird behaviour when loading the page into my browser. Usually I get an error message:
    /Response.jsp(9): class 'query.jsp.QueryBean' could not be loaded
    probably occurred due to an error in /Query.jsp line 9:
    <jsp:useBean id = "queryBean" scope = "request" class = "query.jsp.QueryBean" />
    But the funny thing is that after reloading the page a few times it eventually works. The bahaviour seems to be totally random - sometimes it works, sometimes it claims not finding the JavaBean class.
    Anyone experienced something similar?
    Thank you very much,
    Charlie

    Is QueryBean.class located under '<appname>/Web_inf/query/jsp/'?
    If it is please try changing the package name to something else like com.myclass or something like that.

  • Dynamic Page that uses javascript to run an executable on the client's pc

    I have an .exe file on a shared network that has to be called and executed from portal. The below code works as standalone but not from a dynamic page or an HTML portlet. Any ideas?
    <html>
    <script language="javascript" type="text/javascript">
    function runApp()
    var shell = new ActiveXObject("WScript.shell");
    shell.run('"c:/CstatsWeeklyreport.exe"',1,true);
    </script>
    <body>
    <input type="button" name="button1" value="Run Notepad" onClick="runApp()" >
    </INPUT>
    </body>
    </html>

    Thanks D, but that's not what I'm looking for. That changes which application a file opens with when you download it. That's not what I need for this situation. Here's a little more detail.
    The clients will have an application on their hard drive; it can be any application, even a custom application that they developed themselves. Then, they open a web page with a listbox full of items. Depending on which item they select, a query will return a file path to the .exe file itself. The .exe file resides on the client's hard drive, not on the server. So they're not downloading anything. Depending on the filepath returned by the query, the browser needs to start the process and open the .exe file for them.
    So let's say I have developed a simple text editor called Tedit. I have a file on my hard drive - "C:\TextEditor\bin\debug\TEdit.exe". When they click the open button, that file path is returned from the database. Then the javascript is called to start the process and open that program.
    Again, nothing is getting downloaded, the application resides on the user's hard drive and there is no file to associate it with.
    This can be done in IE using an ActiveX control. And it used to be possible in Firefox using the nsIFile or nsIProcess objects. But since FF15 that's not available anymore, so the javascript throws an error telling them that their permission is denied.
    What I need, is a javascript that will launch the .exe file from the user's hard drive without downloading anything.

  • Can I save a jpeg of a page that used a print template??

    Hi there,
    I have just installed LR 1.4.1 and I love the template options in the Print module because I want to print out two photo images on every 4x6 that I send to my online photo developer (ie the images will be 2x3).
    How do I save these print pages in a jpeg format? (I don't have a photo printer at home).
    regards
    leanne

    With Lr 1.4 it is tough but can be done:
    http://lagemaat.blogspot.com/2007/12/mildly-lightroom-workflow-for-printing.html
    ignore the part about profiles if you just want a web image
    With 2.0 beta (free download if you have LR 1) it is very very simple:
    http://lagemaat.blogspot.com/2008/05/great-prints-from-labs.html

  • Updating pages that use templates takes forever!

    All I often have to update pages based upon template changes,
    and I have a huge site 10,000 pages, it take dw forever to look
    through evryhting, to find the corect pages. Is there anyway I can
    specify what folder to find the pages rather then it looking
    through the whole site?
    thanks!

    The maximum practical site size for which a *Templates ONLY*
    approach makes
    sense is about 100 files. You are 100 times greater than
    that.
    Unfortunately, you are now stuck. The best thing you can do
    is to slowly
    work your way out of Templates and into server side includes
    instead.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "missymonolo" <[email protected]> wrote in
    message
    news:gd82j2$cgb$[email protected]..
    > All I often have to update pages based upon template
    changes, and I have a
    > huge
    > site 10,000 pages, it take dw forever to look through
    evryhting, to find
    > the
    > corect pages. Is there anyway I can specify what folder
    to find the pages
    > rather then it looking through the whole site?
    > thanks!
    >

Maybe you are looking for

  • Report exection problem for one user - not able to see the data.

    Hello Friends , Need some help . I have got the one ticket from bussniess side about the report execution . Unfortunately , I am also not having authorisation of that report due to sensible data. Problem - User is executing the report but some how he

  • Photosmart Premium not printing

    After updating drivers the 309g printer will only advance blank paper. There's no printer queue after ejecting the unprinted page. Any suggestions?

  • How to downgrade from Adobe 1.4 to 1.3.1 on a Mac?

    I upgraded to Adobe 1.4 on my Mac, running Tiger. For various reasons, Adobe 1.4 is broken (see other threads). How can I downgrade to 1.3.1? I have the DMG, but when I try to downgrade, Adobe Lightroom says "there is nothing to install". And in the

  • Panic Attacks - Interpret Two Reports?

    Can someone read the EtreCheck report AND the Mac Mini generated report?  First EtreCheck, followed by the MacMini generated error report. Thanks for looking thru this. ETRECHECK REPORT..... Problem description: System reboots about once a day.  Rece

  • Error when exporting RTF to XSL-FO with the template builder for word

    I am currently trying to export an RTF file from word 2007 to the xsl-fo format. I am using the latest version of BI Publisher desktop as well since I wanted to see if that solved my problem as well. I currently get the following error when trying to