zoukankan      html  css  js  c++  java
  • 发布asp.net website常见症状及其解决方法

    在发布asp.net开发的website的时候,总会遇到各种各样的问题,而这些问题在本机进行开发时候是不会出现的。下面几个是常见的问题

    1.sympton

    The page cannot be found

    The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.


    Please try the following:

    • Make sure that the Web site address displayed in the address bar of your browser is spelled and formatted correctly.
    • If you reached this page by clicking a link, contact the Web site administrator to alert them that the link is incorrectly formatted.
    • Click the Back button to try another link.

    HTTP Error 404 - File or directory not found.
    Internet Information Services (IIS)


    solution:
        可能是asp.net 的服务没有没有打开。只需要打开iis服务器,选择web services  extension s-> allow asp.net *.*服务即可。

    2 symption: Writing data to Access or specified files will be denied!向指定的文件里面写入数据时候,会无法写入。例如Access数据库的更新等等。
        reason:
            iis如果采用anonymous登录方式的话,是使用了IUSER_<Machine_name>来进行的。而default的access acount是没有对文件进行write/update的权限的。这时,我们需要将website相关acount都赋予wirte/update的permission即可。具体操作如下:
            找到需要write/update所在文件夹/文件,点击右健--〉security,然后将相应acount添加到其用户租,并给与其write 权限即可

  • 相关阅读:
    Mininet学习指南
    Docker and OverlayFS in practice
    (OK) dnf——install docker on Fedora23
    Running Docker Swarm inside LXC
    ERROR——running docker in CORE on Fedora23
    (OK) dnf
    (OK) simply running CORE & docker on Fedora 23
    北京大学互联网信息工程研发中心(深圳)
    nload
    (OK) CORE
  • 原文地址:https://www.cnblogs.com/Winston/p/1225803.html
Copyright © 2011-2022 走看看