ASP on Localhost / LiveData View or browser - Long

Well, it seems like I've tried everything, and I've found a
lot of good resources out there. I started out following the DW
articles/tutorials "setting up an ASP development environment" and
"Developing a Web Application with Dreamweaver." I am running
Windows Vista Business and IIS 6.0 (or 7.0 - I'm getting completely
confused - see below) and DW CS3, and MSAccess 2007. Anyway, I have
looked at the asp forum (forums.iis.net) and found a good list on
the subject and tried as many things as possible. One of those is
the blog at
http://weblogs.asp.net/steveschofield/archive/2007/03/17/localhost-connection-issues-list. aspx
by Steve Schofield Among the items suggested were to check:
Make sure WWW service is enabled (it is)
ping localhost (works)
turn off IE friendly errors (no change)
check for problem in Netscape & Firefox (no browser
works)
Open a command prompt, type netstat -an -p tcp and see if
0.0.0.0:80 listed or something with :80 listed. (nothing)
Check antivirus software - I made sure DW CS3 & MS Access
have program permissions allowed in McAfee firewall
Looked for errors in the event log (nothing changes)
Install and run Process Monitor (see below)
Another blog suggested the following:
%windir%\system32\inetsrv\appcmd set config -section:asp
-scriptErrorSentToBrowser:true --- changed from false. That was
rather scary and beyond me, though I think I did find the correct
place to edit it. But maybe not!
Several items of note:
http://127.0.0.1/ shows a graphic for
IIS7
System and Maintenance | Administrative tools shows IIS 6.0
An asp file I created while following a tutorial called
timetest works fine at
http://localhost/dreamweaver/CafeTownsend/timetest2.asp
While working in IIS manager I found the error message text
under ComputerName|Websites|Default Website|ASP - Debugging
properties, and changed it to read "An error occurred on the server
when processing the URL. Please contact the @#$% system
administrator" and this is the message that appears when I try to
view my page in the browser or livedata view.
I have checked permissions for the
wwwroot/dreamweaver/website files to ensure Read & Write are
enabled
Ditto in IIS Manager for Default Website
Process monitor shows the following (my guess at a
significant result):
Operation: FASTIO_NETWORK_QUERY_OPEN
Path: C:\Users\Me\Documents\Dreamweaver Sites\Cafe
Townsend\viewJS.asp
Result: FAST IO DISALLOWED
It seems like there should be a listing with Path: C:\Inetpub
etc. but at this point logic no longer seems useful.
I know this is a common problem and it may be caused by Vista
but as you can tell, I have tried many, many fixes and had zero
success.
Thanks for your help.

Well, it seems like I've tried everything, and I've found a
lot of good resources out there. I started out following the DW
articles/tutorials "setting up an ASP development environment" and
"Developing a Web Application with Dreamweaver." I am running
Windows Vista Business and IIS 6.0 (or 7.0 - I'm getting completely
confused - see below) and DW CS3, and MSAccess 2007. Anyway, I have
looked at the asp forum (forums.iis.net) and found a good list on
the subject and tried as many things as possible. One of those is
the blog at
http://weblogs.asp.net/steveschofield/archive/2007/03/17/localhost-connection-issues-list. aspx
by Steve Schofield Among the items suggested were to check:
Make sure WWW service is enabled (it is)
ping localhost (works)
turn off IE friendly errors (no change)
check for problem in Netscape & Firefox (no browser
works)
Open a command prompt, type netstat -an -p tcp and see if
0.0.0.0:80 listed or something with :80 listed. (nothing)
Check antivirus software - I made sure DW CS3 & MS Access
have program permissions allowed in McAfee firewall
Looked for errors in the event log (nothing changes)
Install and run Process Monitor (see below)
Another blog suggested the following:
%windir%\system32\inetsrv\appcmd set config -section:asp
-scriptErrorSentToBrowser:true --- changed from false. That was
rather scary and beyond me, though I think I did find the correct
place to edit it. But maybe not!
Several items of note:
http://127.0.0.1/ shows a graphic for
IIS7
System and Maintenance | Administrative tools shows IIS 6.0
An asp file I created while following a tutorial called
timetest works fine at
http://localhost/dreamweaver/CafeTownsend/timetest2.asp
While working in IIS manager I found the error message text
under ComputerName|Websites|Default Website|ASP - Debugging
properties, and changed it to read "An error occurred on the server
when processing the URL. Please contact the @#$% system
administrator" and this is the message that appears when I try to
view my page in the browser or livedata view.
I have checked permissions for the
wwwroot/dreamweaver/website files to ensure Read & Write are
enabled
Ditto in IIS Manager for Default Website
Process monitor shows the following (my guess at a
significant result):
Operation: FASTIO_NETWORK_QUERY_OPEN
Path: C:\Users\Me\Documents\Dreamweaver Sites\Cafe
Townsend\viewJS.asp
Result: FAST IO DISALLOWED
It seems like there should be a listing with Path: C:\Inetpub
etc. but at this point logic no longer seems useful.
I know this is a common problem and it may be caused by Vista
but as you can tell, I have tried many, many fixes and had zero
success.
Thanks for your help.

Similar Messages

  • Design view and browser view in DW are different than when I view from local folder

    I'm brand new to Dreamweaver CS5.5 and here is my problem:
    I've made an html page in dreamweaver with a banner, with an additional graphic and some text on top of the banner.  It displays just fine in every browser when I view from the local folder, but when I open DW and view, it displays incorrectly in all three design, live and browser views within DW.  If I make changes to the css file until it views correctly in design view, it no longer displays correctly from the local folder and it still doesn't view correctly in live or browser view within DW.  If what I'm doing isnt going to display accurately in any of the views provided by Dreamweaver as compared to the live server, whats the point in having this software?  I could just keep building webpages in notepad and uploading with CoreFTP.
    Any suggestions?  Is it some setting that I dont know about that I need to change within DW?   Please help.

    align="center" is deprecated (obsolete) code in XHTML & HTML5 doc types.  Instead of styling markup with HTML, you should be using CSS. 
    CSS
    .center {text-align:center}
    HTML
    <p class="center">some centered text here</p>
    With respect to break tags, in XHTML doc types the correct syntax is <br /> not <br>.  However your usage of line breaks is inconsistent with good symantic markup.  Use headings <h1> <h2> <h3> <h4> for important keywords.  Use <p> for descriptive paragraphs.  Use <ul> <li> or <ol> <li> for lists.  Line breaks should be used minimally if ever.
    XHTML doc types require all tags to be lowercase.  Uppercase tags will throw errors.
    Your design is too rigid.  When text size is increased in browsers, your content is unreadable.  See screenshot.
    SOLUTIONS:
    1) DO NOT USE POSITION ABSOLUTE.  You don't need it.  Absolute positioning removes content from the normal document flow resulting in a jumbled mess.  Use default CSS positioning (none) with margins, padding & floats to align elements.
    2) Remove HEIGHT values from all CSS containers.  Height limits a container's capacity to hold more content when needed.  Container height should always be determined by the amount of content it holds; not explicit values.  If required to reveal a background image, for example, use CSS min-height instead of height.
    CSS Box Model
    http://www.w3schools.com/css/css_boxmodel.asp
    CSS Floats
    http://www.w3schools.com/cssref/pr_class_float.asp
    CSS min-height
    http://www.w3schools.com/cssref/pr_dim_min-height.asp
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Gif file won't animate in Muse's preview mode or in Muse's view in browser mode

    Created a gif file with Photoshop that's 7.5MB in size.  Placed the gif  file on a Muse page.  But, the gif won't animate in Muse's preview mode or when Muse sends the page to be viewed in browser mode.  I'm using a Mac running OS X 10.9.2 and I'm a creative cloud member using Muse.  Any solutions?

    Step one to enable the community to help debug what you're encountering would be to provide the URL for the page where the GIF is being used. My first guess would be there are effects applied to the image (i.e. inner glow, bevel, etc.) that require Muse to re-encode the image and Muse does not support encoding animated .gif. It only supports passing animated .gif files through unchanged. (And to get an image to pass through unchanged it needs to have no effects that require rasterization applied in Muse.)
    Given you've stated the GIF file is 7.5Mb I have to question your choice of .gif. At 7.5Mb this single file will take ~8 seconds to download on the average US broadband connection and will be much slower for many broadband users and most cellular users. GIF is a reasonable choice for very small short animations used sparingly, but is seldom (if ever) a good choice for larger or longer animations. Better choices for those are to use a video or a tool like Edge Animate to create a HTML5/CSS3 animation. The end result will be vastly more user friendly in terms of page load performance.
    A huge percentage of first time visitors to a webpage will cancel the page load rather than waiting 8+ seconds for the page load to complete.

  • Font in Design View different from font in Live View and browser preview

    My external style sheet has the body set for a sans-serif font and there is nothing to contradict it in the HTML documents. But while I get sans-serif in the Design View (as you would expect), I get a serif font in Live View and Browser Preview, not to mention on the Web itself.
    How is this possible (and what should I do about it)?
    --Paul

    Murray and David: it worked! It is a rare and joyous experience to have a straightforward solution to the sorts of problems I come up with (including other realms). But I have to say that with HTML and CSS (and hence with Dreamweaver), solutions to difficulties have seemed within easier reach than in other parts of the computer world.
    By the way, I wanted to choose "correct answer" for both your posts, but after making the first click it was no longer available for the remaining post--so I typed "helpful" even though that one was correct too.
    Thanks again.
    --Paul

  • Images not showing in viewer and browser

    I've been using Apreture 2.1.1 without any problems until yesterday. Even though all my projects are in tact, I can no longer see the images in the Aperture viewer and browser. I really don't know how this happened. To rectify the problem I did the following:
    1. Verified and repaired the Disk using Disk Utility
    2. Logged in in Safe mode and did the above
    3. Uninstalled Aperture, removed all reference files and re-installed
    4. Opened the Library and photos are all intact.
    5. Uninstalled Aperture and re-installed the 2.0 version
    I did all the above but still have the same issue. Just can't figure out what is wrong here.
    Any suggestions would be highly appreciated.
    thanks
    ps. Forgot to add this: It also crashes when I want to quit it
    Message was edited by: AlexGo

    AlexGo wrote:
    I've been using Apreture 2.1.1 without any problems until yesterday. Even though all my projects are in tact, I can no longer see the images in the Aperture viewer and browser. I really don't know how this happened. To rectify the problem I did the following:
    1. Verified and repaired the Disk using Disk Utility
    2. Logged in in Safe mode and did the above
    3. Uninstalled Aperture, removed all reference files and re-installed
    4. Opened the Library and photos are all intact.
    5. Uninstalled Aperture and re-installed the 2.0 version
    I did all the above but still have the same issue. Just can't figure out what is wrong here.
    Any suggestions would be highly appreciated.
    thanks
    ps. Forgot to add this: It also crashes when I want to quit it
    Message was edited by: AlexGo
    did you dump the preferences and appropriate other files? prior to the reinstall? otherwise if any of those files are bad you'll be installing aperture with the same possibly corrupt files.
    your problem sounds like a hard drive or cable issue, have you swapped out cables?
    what cable are you using? eSATA? FW800?

  • Strange ... Projects opened from Projects View are no longer (3.3) selected on the Library tab of the Inspector.

    Strange goings on here with my Libraries: Projects opened from Projects View are no longer (3.3) selected on the Library tab of the Inspector.  When, in Projects View, I double-click a Project, that Project's contents are shown in the Browser, but the selection shown on the Library tab of the Inspector remains on "Projects" near the top of the tab.
    This is, imho, _very very very bad_.  Can someone confirm this behavior on their machine?  Is this announced or expected?
    Thanks.

    Hi Kirby,
    I never noticed!
    Can someone confirm this behavior on their machine?
    Confirmed! (on MBP und iMac)
    Is this announced or expected?
    Don't know - it does not follow from the release notes, as far as I understand them.
    Regards
    Léonie

  • How to implemenet "Edit in Browser" and "View in Browser" in custom ECB Menu

    Hi,
    i have build a custom ECB menu. I implemented for example "Edit in Microsoft xxx" Item successfully.
    setDocType();
    if (currentItemAppName != "" && currentItemOpenControl != "") {
    strDisplayText = "";
    if (currentItemAppName != " ")
    strDisplayText = StBuildParam(L_EditIn_Text, currentItemAppName);
    else {
    var objEditor = StsOpenEnsureEx2(currentItemOpenControl + ".3");
    if (objEditor != null)
    strDisplayText = L_EditInApplication_Text;
    if (strDisplayText != "") {
    strAction = "editDocumentWithProgID2('" + currentItemFileUrl + "', '" + currentItemProgId + "', 'SharePoint.OpenDocuments', '0', '" + ctx.HttpRoot + "', '0')";
    strImagePath = ctx.imagesPath + currentItemIcon;
    CAMOpt(m, strDisplayText, strAction, strImagePath, null, 260);
    CAMSep(m);
    But i couldnt find any information to "Edit in Browser" and "View in Browser". I also look in the core.js and couldnt find any information about this.
    Can someone help? How could i
    implemenet "Edit in Browser" and "View in Browser" in my custom ECB Menu?
    Best Regards
    Bog
    Developers Field Notes | www.bog1.de

    Hi,
    According to your post, my understanding is that you wanted to custom the “View in Browser” and “Edit in Browser” with ECB menu.
    Per my knowledge, the view in browser and edit in browser use the STSNavigate method to navigate the page.
    The URL would like below.
    Edit in Browser:
    http://YourServerName/sites/YourSiteName/_layouts/WordEditor.aspx?id=/sites/YourSIteName/YourLibraryName/YourFileName
    View in Browser:
    http://YourServerName/sites/YourSiteName/_layouts/WordViewer.aspx?id=/sites/YourSIteName/YourLibraryName/YourFileName
    We can get the file name, then use following method to customize the view in browser or edit in browser.
    function Custom_AddDocLibMenuItems(m, ctx) {
    CAMOpt(m, 'Custom Edit In Browser', 'javascript:STSNavigate(siteurl+"_layouts/WordEditor.aspx?id="+currentItemFileUrl)');
    CAMSep(m);
    </script>
    http://weblogs.asp.net/jan/customizing-the-sharepoint-ecb-with-javascript-part-1
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • I cant use the option "view in browser" after creating my webpage.

    I am creating a webpage for my project. After creating the front page, when I tried to view it in the browser, the "view in the browser"option was unavailable. Kindly help me.

    Hi Rebecca,
    Thank you for posting in MSDN forum.
    >> I  am creating a webpage for my project. After creating the front page, when I tried to view it in the browser, the "view in the browser"option was unavailable.
    Based on your issue, first of all, I suggest you could try to save the web page you created and then right click your solution or web project->build your solution/project and then check this issue again.
    You could also try to use the Ctrl+Shift+W to check if you could view your web page in the browser.
    Generally, I know that when we choose the "view in browser" option by right-click a .aspx web page. So to check if this issue is related to the VS IDE or the specified project, I suggest you could try to create a simple ASP.NET project and
    the add a .aspx file, then check if you can see the "view in browser" option by right-click the .aspx web page.
    (1) If you still could not see the "view in browser" option, I suggest you could try to reset the VS setting file by clicking the TOOLS->Import and Export Settings... check this issue again.
    If it sill could not help you, maybe you will need to repair or re-install the VS IDE check this issue.
    (2) If you could see the "view in browser" option, I assume that the issue maybe related to your code for your web page. So please you ask this issue directly to the ASP.NET forum:http://forums.asp.net/ you
    will get better support.
    In addition, if you did not install and use the IE for this web page, I suggest you could try to install the IE and then check this issue.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Why do I get an error when clicking on "view in browser" in my newsletter?

    Hello. I am trying to get the URL for my email campaigns so I can show some of them on my webpage. When I tried to get the URL by clicking on the email I sended in the tag that says "view in browser":
    I get the following URL:
    http://www.coscatl.com/CampaignProcess.aspx?A=View&VID=0&KID=116388
    With the following error:
    ERROR: This feature is not available in preview mode.
    Any ideas? Suggestions?
    Thanks!

    Hi Steve. Thank you for your time.
    You are right, the link does work after the campaign has been delivered.
    By the way I am big fan of BC Gurus.
    Take care and gracias again!

  • How to hide "View in Browser" and "Edit in Browser" from ECB injected by Office Web Apps Feature

    Hi,
    i am currently using custom_AddDocLibMenuItems to implement a custom ECB menu for my document library. I need to activate Office Web Apps. My custom_AddDocLibMenuItems has two items
    -> custom dialog
    -> open in office web apps
    After activating the Office Web Apps Feature at the SiteCollection Level, this Feature "injects" in my custom menu the following
    additional menu items:
    -> View in Browser
    -> Edit in Browser
    Its curious to see that, cause implementing the js function custom_AddDocLibMenuItems with
    return true should be the way to impolement a custom ECB menu without having other features/solutions injecting things in this menu!? Or did i misunderstood something here?
    My question is: How can i prevent this ...
    a) without deactivating the Office Web Apps Feature
    b) without modifying the core.js
    I hope someone can help!
    Best Regards
    Bog
    Developers Field Notes | www.bog1.de

    May be this can help
    http://extreme-sharepoint.com/2011/10/29/hide-menu-ecb/http://pholpar.wordpress.com/2011/07/24/hiding-ecb-custom-actions-based-on-specific-list-properties-using-the-client-object-model/Or tryhttp://stackoverflow.com/questions/13795858/how-to-hide-view-in-browser-in-document-library-in-sharepoint-2010-using-javascr $(document).ready(function(){
    $('.ms-MenuUIPopupBody').live('blur', function() {
    var elm = $("div.ms-MenuUIULItem a:contains('View in Browser')");
    elm.remove();
    $("div.ms-MenuUIULItem a:contains('Edit in Browser')").remove();
    It is hiding menu only on focus or blur or mouseover
    I wants it to be hide on load AS soon as i Click on "V" option on right side of document it should hide View in Browser and Edit in browser
    When I click on V option ![I wants As soon as i Click on v option right side of test it should hide view in Browser and edit in browser][1]
    If this helped you resolve your issue, please mark it Answered

  • When i set page as template, set editable regions and try to view in browser IE 9 a download box com

    When I set page as template, set editable regions and try to view in browser IE 9 a download box comes up and when i click open it just opens the file again in DW.

    Use the Template to spawn a child page.  File > New > Page from Template...
    Save the child page as some_file.html and then preview that in your browsers.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Change View in Browser Setting

    I have packaged Reader 10 that we deployed to our users with it set to view PDFs in Reader.  There is a group of people in this one department now that want it set to view in browser.  I tried setting it in the registry to integrate in the browser which works fine for exisiting users.  The problem is when a new user logins to a machine those settings are ignored and it defaults to view in Reader and not browser.
    Is there any way I can change this?  My only solution so far is to create a new package with it set to view in Browser and to maintain 2 packages...

    I have an website and a forum ( http://www.13tribos.com.br/forum ) with some pdf files for download. There are some people that are having trouble because the configuration in their browers that opens the documento itself with adobe plugin. Why I can solve tris issue because people needs to download the pdf files to read later ? I´m wondering in compress file, but is not a good solution. Is an another option to the pdf that lets bypass open and save the file ?
    Thanks you attention
    Alessandro Drago

  • Links not underlined when viewing in browser

    I've set up a hyperlink style so that links are underlined.  When I view my site in 'Preview' mode they appear to be underlined and OK, but when I export, upload via FTP and view in browser (Chrome, Firefox, Safari, IE), they don't appear underlined ?  I thought it may have been due to the paragraph styles I have set for the content I have as links, but I've even tried removing the style and applying to a non-styled font... they still don't underline ?  Does anyone have ideas ?

    Hello,
    Could you please confim if you have applied link to the text (by manually selecting the text) or to the "text box"?
    If the link is applied to the text box, please check the settings in the text link style :
    Please dit the text link style and check if making text underline there helps or not.
    Regards,
    Sachin

  • Setting report to A4 has very smaller view in browser.

    Setting report to A4 has very smaller view in browser. How to set it to 1000px width and what are the limitations on printing if I use 1000px size.
    Help me regarding this.

    Hi Sanchit,
    In SQL Server Reporting Services (SSRS), it has two different rules in pagination: Physical pagination, Logical pagination.
    Physical pagination is used to the print control and the TIFF and PDF rendering extensions. It is controlled by the PageSize properties.
    Logical pagination is used to the HTML and GDI rendering extensions. It is controlled by the InteractiveSize properties.
    Reference:
    http://blogs.msdn.com/b/sqlforum/archive/2011/02/28/faq-how-do-i-get-the-same-page-number-in-web-page-and-pdf.aspx
    Did the printing point of view is the situation when we click Print Layout icon in preview report? If we click the icon, the default setting is fit the report of the whole report. We can change it to other value to get a more large view. Please refer to
    the screenshot below:
    If there are any misunderstanding, please feel free to let me know.
    Regards,
    Alisa Tang
    If you have any feedback on our support, please click
    here.
    Alisa Tang
    TechNet Community Support

  • Muse keeps on crashing! can't view in browser or publish. Anyone got any clues?

    Trying to publish Muse and it keeps crashing. Won't even let me view in browser. Anyone else had this happen and got any solutions?

    Muse error http://helpx.adobe.com/muse/kb/unexpected-error-occurred-i-200.html

Maybe you are looking for

  • Unable to register Hyperion Reporting and Analysis with Shared Services

    Hello everybody, I'm trying to install and configure Foundation Services in order to schedule Brio Query documents execution and distribution. IBM DB2 Express has been installed and configured. Shared Services have been installed and configured. Repo

  • Very strange Access / JDBC problems

    Hi there, I am running a simple jdbc program which uses MS Access 2000. I am getting this really strange problem. My program does not update the table and throws no exception - when I run the same program through a remote debugger - it does update th

  • Printing from ITS a custom ALV report

    Dear All, If anybody has any ideas on the following topic it would be appreciated. We have written a custom report that outputs in ALV, this is then rendered as service on our ITS server. The problem is that when you try to print the frame using stan

  • Different recipients in different job steps

    I want to create a job with multiple steps and i'd like to send each step to different recipient. The problem is that recipient can only be defined at job level but i'd like to define different recipients for each job-step. How can i slove this one?

  • How to zoom in even steps (50%, 66,7%, 100% etc) with mouse scroll on a Mac?

    I just switched to a mac from PC and I was used to zoom with my mouse scroll and hold shift to zoom in even increments to keep the image as crisp as possible. Now on a mac I still haven't found a way to do this. When the zoom with mouse scroll is ena