web.config文件中的命名空间不起作用

时间:2011-09-28 19:28:16

标签: c# visual-studio-2008 namespaces web-config

  

可能重复:
  How to add namespaces in web.config file?

我正在尝试在web.config文件中添加命名空间,以便我可以在所有网页中使用它(在code behind中)。但它没有用。
有人试过吗?我之前问this但没有得到任何合适的答案。
为了更好地理解这里是code behind文件

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace TestWeb
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Label1.BackColor = Color.Red;// It is not working.
        }
    }
}

这是web.config

<?xml version="1.0"?>
<configuration>
  <system.web>
    <pages>
      <namespaces>
        <clear/>
        <add namespace="System.Drawing" />
      </namespaces>
    </pages>
  </system.web>
</configuration>

修改

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestWeb._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
    void Page_Load(object sender, EventArgs e)
    {
        Label1.BackColor = Color.Red;
    }
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:label ID="Label1" runat="server" text="Label"></asp:label>
    </div>
    </form>
</body>
</html>

4 个答案:

答案 0 :(得分:3)

<namespaces>元素仅适用于aspx页面。

与VB.Net不同,C#没有在普通代码文件中自动包含命名空间的机制。

答案 1 :(得分:2)

命名空间配置部分用于页面,而不是代码隐藏。文件后面的代码表示所有命名空间导入。配置中包含的命名空间将包含在从 .aspx 页面生成的动态类中。

答案 2 :(得分:2)

你应该试试这个,然后试试。

<configuration>
  <system.web>
    <pages>
      <namespaces>
        <clear/>
        <add namespace="System.Drawing" />
        <add namespace="System" />
      </namespaces>
    </pages>
  </system.web>
</configuration>

答案 3 :(得分:0)

正如SLaks所说,这是行不通的。如果您正在寻找始终包含命名空间的快捷方式,请考虑编辑默认的VS模板,以便在创建新模板时始终存在。