使autowireup = true默认

时间:2015-09-16 14:24:09

标签: c# asp.net vb.net

我通常用c#写。我在c#中做了一个演示,当我创建一个新的.aspx页面时,它默认为autowireup = true。我开始了一份新工作,他们在VB.net上写作。当我创建一个新的aspx页面autowireup defauts为false时,我如何/在哪里将其设置为默认为true?我正在使用VS 2013

1 个答案:

答案 0 :(得分:0)

您可以将.dropdown-menu > li.active * { background-color: lightBlue!important; } 文件中的值更改为true

web.config

上述内容当然适用于<configuration> <system.web> <pages autoEventWireup="true" /> </system.web> </configuration> 文件所关联的所有页面。

但是,如果要将值更改为特定页面,则需要将web.config属性添加到AutoEventWireup Page指令中,如下所示:

@