`
chenhsong
  • 浏览: 43967 次
  • 性别: Icon_minigender_1
  • 来自: 洛阳
社区版块
存档分类
最新评论

Unrecognized attribute 'xmlns'解决办法

阅读更多

Symptoms
When using VS.NET Web Developer Express Edition, you may have a site that compiles fine in the development environment but fails when you copy it to the local IIS server.

Cause
ASP.NET 2.0 is not the default .NET version used by IIS.  It works in the development environment because VS.NET compiles a virtual web server with the proper .NET version before code compilation begins.

Thinking it occurred because the virtual directory wasn't identified as an application, I created a site (called personal) that mapped to the directory I copied, but still failed.

As it turns out, 'xmlns' is a component in ASP.NET 2.0, and will generate that error when compiled on an IIS server running ASP.NET 1.1.  This is delightfully easy to fix:

  • Open Internet Information Services and navigate to "Default Web Site" (or the site you're using as your default).
  • Right click the Site icon (the one with the globe).
  • Select the ASP.NET tab.  You'll see a drop-down with the available versions (if you're getting the error, odds are, you'll see 1.1).
  • Select the proper build of ASP.NET 2.0.
  • Restart IIS.

Your page should now work.

分享到:
评论

相关推荐

    unrecognized opcode(解决方案).md

    unrecognized opcode(解决方案).md

    成功解决stata软件中 command pwcorr-a is unrecognized问题

    成功解决stata软件中 command pwcorr_a is unrecognized问题。 步骤,把文件中.ado文件放在路径..\Stata\base\p中。 已经成功解决。

    在Win7系统下抛出java.net.SocketException的解决办法

    ### 在Win7系统下抛出java.net.SocketException的解决办法 #### 问题背景及原因分析 在使用MyEclipse开发工具结合JBoss服务器进行项目开发的过程中,遇到一个常见但令人头疼的问题:当启动JBoss服务器时,控制台...

    linuxcentos安装nginx常见错误及解决办法.pdf

    Linux CentOS 安装 Nginx 常见错误及解决办法 标题解析 Linux CentOS 安装 Nginx 常见错误及解决办法,这篇文章旨在解决 Linux CentOS 下安装 Nginx 时常见的一些错误,包括无法站外访问、编译 pcre 错误、make ...

    could not create the java virtual machine 解决办法

    ### "could not create the java virtual machine" 解决办法 在开发过程中,我们经常会遇到 “could not create the java virtual machine” 这样的错误提示。这个问题通常出现在启动基于Java的应用程序时,比如...

    解决python脚本中error: unrecognized arguments: True错误

    在Python编程中,`error: unrecognized arguments: True` 错误通常出现在命令行解析时,当你尝试传递一个未被脚本预期的参数时。这个错误表明你可能在调用Python脚本时,传入了一个程序无法识别的参数,例如在这个...

    gae报错:javax.swing.tree.TreeNode is a restricted class的解决办法

    标题 "gae报错:javax.swing.tree.TreeNode is a restricted class的解决办法" 指出的是在Google App Engine (GAE) 平台上遇到的一个特定错误。GAE是一个基于Java或Python等语言的云服务平台,它对上传的代码有一些...

    VC6.0应用OpenCV_出现的错误及解决办法.

    7. **错误:Unrecognized or unsupported array type** 解决方案:在OpenCV的图像显示函数中,参数应直接传入图像变量,而不是文件名。例如,将"frame0.jpg"替换为变量image。 8. **错误:按Esc键或内存释放语句...

    Attribute_info.rar_it

    Abstract base for all XXXAttribute_info structures. It also works in conjunction with GenericAttribute_info class to process all unrecognized attributes for Andriod.

    boot.img解压工具,可解决“unrecognized format. error!” 或 “ramdisk”报错

    二、 如果AIK遇到 “unrecognized format. error!” 或 “ramdisk”问题 那么使用 mb 吧。这玩意似乎要MINGW,我cmd 里没跑通,MINGW里跑成功了!! unpack: ./mb.exe unpack /d/WPSSoftware/test/boot.img ...

    linux移植问题的解决

    linux移植碰到的3个问题解决 问题1:Error: unrecognized/unsupported machine ID (r1 = 0x00000356). 问题2:Starting kernel ... Uncompressing Linux... done, booting the kernel. 就停止了 问题3:Freeing ...

    Pytest使用allure提示unrecognized arguments

    在使用Pytest集成Allure框架时,可能会遇到“unrecognized arguments: –alluredir=reports”的错误提示。这个问题通常与Python环境配置不正确有关,尤其是当系统中存在多个Python版本时。以下是对这个问题的深入...

    Linux编译LVGL仿真器出错问题解决.docx

    在Linux环境下,当你尝试编译LVGL(LittlevGL)仿真器时,可能会遇到一个编译错误,提示“unrecognized command line option ‘-Wshift-negative-value’”。这个错误表明GCC编译器无法识别该选项,这通常是由于GCC...

    linux乱码问题的解决办法

    需要注意的是,Enca对于某些GBK编码的文件可能无法准确识别,会显示“Unrecognized encoding”。 #### 三、文件编码转换的方法 针对不同场景,可以选择合适的方法来转换文件编码。 ##### 1. 在Vim中直接转换文件...

    SceneDelegate:[AppDelegate setWindow:]: unrecognized selector sent to instance 0x60000002b440

    -[AppDelegate setWindow:]: unrecognized selector sent to instance 0x60000002b440 修改方法: 在AppDelegate.h里加声明window @property (nonatomic, strong) UIWindow * window; 运行问题解决 兼容13和13以前...

    msp430读写eeprom.rar

    RD部分老是提示unrecognized instruction.” 这段描述揭示了在Proteus环境下进行 MSP430 与EEPROM交互的模拟过程中遇到的问题。用户已经解决了模拟ACK(应答)信号的问题,使得数据写入(WR)过程能够正常执行。然而...

    ffmpeg命令集合

    ### ffmpeg命令集合详解 #### 一、概述 `ffmpeg`是一款强大的多媒体处理工具,它可以用来录制、转换以及流化音视频文件。对于从事音视频处理的开发者来说,掌握`ffmpeg`的基本用法是非常重要的。...

    BLOG_Oracle_lhr_imp-00051,imp-00008

    IMP-00008: unrecognized statement in the export file IMP-00008 错误是指在导入数据时,遇到了未知的语句。这种情况通常是由于导出文件中的语句格式不正确或是导出文件中的数据不正确。要解决这个错误,可以尝试...

Global site tag (gtag.js) - Google Analytics