asp.net – 如何在web.config中定义using语句?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在web.config中定义using语句?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的asp.net项目中使用 MySql.但我不想每次“使用 MySql.Data.MysqLClient”键入每个aspx.cs / aspx.vb文件中的语句.如何在web.config文件中定义这一行?

我已经定义了一些名称空间,如下所示,但这仅适用于aspx页面

<?xml version="1.0"?>
<configuration>
    <system.web>
        <compilation debug="false" targetFramework="4.0"/>
        <pages>
            <namespaces>
                <add namespace="System.Web.Configuration"/>
                <add namespace="MysqL.Data"/>
                <add namespace="MysqL.Data.MysqLClient"/>
            </namespaces>
        </pages>
    </system.web>
</configuration>

相关问题:Define common namespaces for code pages in Web.Config

解决方法

没有办法为代码隐藏设置全局使用.您必须将使用放在代码文件中.
原文链接:https://www.f2er.com/aspnet/245776.html

猜你在找的asp.Net相关文章