ASP.NET 4 ListBox 控件无法被禁用
时间:2012-04-08 14:13来源: 作者: 点击:
次
在 ASP.NET 4 的 WebForm 应用程序中,将 ListBox 服务器控件的 Enabled 属性设置为 false 后,并没有禁用该控件。
测试程序的 WebForm 页面文件 TestForm.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind=&qu
在 ASP.NET 4 的 WebForm 应用程序中,将 ListBox 服务器控件的 Enabled 属性设置为 false 后,并没有禁用该控件。 测试程序的 WebForm 页面文件 TestForm.aspx: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="TestForm.aspx.cs" Inherits="WebAppTester.TestForm" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>测试页</title> <link href="Main.css" rel="stylesheet" type="text/css" /> </head> <body> <form id="form1" runat="server"> <div> <asp:ListBox ID="lstTest" Rows="4" runat="server" /> <asp:Button ID="btnDisable" Text="禁用" OnClick="Button_Click" runat="server" /> <asp:Button ID="btnEanble" Text="启用" OnClick="Button_Click" Enabled="false" runat="server" /> </div> </form> </body> </html>
以及相应的代码隐藏文件 TestForm.aspx.cs: using System; using System.Web.UI; using System.Web.UI.WebControls; using Skyiv.Common; namespace WebAppTester { public partial class TestForm : Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { lstTest.DataSource = Enum.GetNames(typeof(DateTimeKind)); lstTest.SelectedIndex = 1; lstTest.DataBind(); } } protected void Button_Click(object sender, EventArgs e) { Switch(((Button)sender) == btnEanble); } void Switch(bool isEnable) { btnDisable.Enabled = isEnable; btnEanble.Enabled = !isEnable; if (isEnable) lstTest.Enable(); else lstTest.Disable(); } } }
还有定义扩展方法的 WebControlExtensions.cs:
using System.Web.UI.WebControls; namespace Skyiv.Common { public static class WebControlExtensions { static readonly string tagDisabled = "disabled"; public static void Enable(this WebControl ctl) { ctl.Enabled = true; ctl.Attributes.Remove(tagDisabled); } public static void Disable(this ListControl ctl) { ctl.Enabled = false; ctl.Attributes.Add(tagDisabled, tagDisabled); foreach (ListItem item in ctl.Items) if (item.Selected) item.Attributes.Add("class", WebControl.DisabledCssClass); } } }
上述 Disable 扩展方法就是用来补救 ListBox 服务器控件无法被禁用的。
最后是样式表 Main.css:
option.aspNetDisabled { color: White; background-color: #00FFFF; }
上述测试程序的运行结果如下所示:
点击“禁用”按钮后:
相应的的 HTML 页面源代码如下所示: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><title>测试页</title> <link href="Main.css" rel="stylesheet" type="text/css" /> </head> <body> <form method="post" action="TestForm.aspx" id="form1"> <div class="aspNetHidden"><input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/w ... YP" /></div> <div class="aspNetHidden"><input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/w ... tA" /></div> <div> <select size="4" name="lstTest" id="lstTest" class="aspNetDisabled" disabled="disabled"> <option value="Unspecified">Unspecified</option> <option selected="selected" value="Utc" class="aspNetDisabled">Utc</option> <option value="Local">Local</option> </select> <input type="submit" name="btnDisable" value="禁用" id="btnDisable" disabled="disabled" class="aspNetDisabled" /> <input type="submit" name="btnEanble" value="启用" id="btnEanble" /> </div> </form> </body> </html>
可以看出,上述 HTML 源代码中第 11 行的 select HTML 元素已经添加了 disabled 属性,第 13 行的的 option 子元素也添加了 class 属性,以便对应 Main.css 中相应的样式,补救在 IE 8、IE9 和 Chrome 19.0 浏览器中不能正确显示的 bug。
在 MSDN 的 ASP.NET 4 和 Visual Web Developer 中的新增功能 中提到:
用于可禁用控件的 CSS 在 ASP.NET 3.5 中,禁用某个控件时(请参见 WebControl.Enabled),会将一个 disabled 特性添加到呈现的 HTML 元素中。 例如,下面的标记将创建一个已禁用的 Label 控件: <asp:Label id="Label1" runat="server" Text="Test" Enabled="false" /> 在 ASP.NET 3.5 中,原有控件设置将生成以下 HTML: <span id="Label1">Test</span> 在 HTML 4.01 中,针对 span 元素将 disabled 特性视为无效。 它仅对 input 元素有效,因为它指定这些元素无法访问。 对于仅供显示的元素(如 span),浏览器通常支持呈现禁用的外观,但根据辅助功能标准,依赖于这种非标准行为的网页并不可靠。 对于仅供显示的元素,应使用 CSS 指明已禁用的可视外观。 因此在默认情况下,ASP.NET 4 将针对上面显示的控件设置生成以下 HTML: <span id="Label1" class="aspNetDisabled">Test</span> 通过设置 DisabledCssClass 属性,可以更改控件禁用时默认呈现的 class 特性的值。
实际上,在 ASP.NET 4 中,如果将 WebControl 的 Enabled 属性设置为 false,ListBox 服务器控件对应的 select HTML 元素的确没有被添加 disabled 属性。而 Button 服务器控件对应的 input HTML 元素还是被添加 disabled 属性。照理说,select HTML 元素也不能说是仅供显示的元素吧。 使用 ASP.NET 3.5 兼容模式
如果使用 ASP.NET 3.5 兼容模式来呈现页面,也可以解决问题,需要在 web.config 文件中作如下设置: <?xml version="1.0" encoding="utf-8"?> <configuration> <system.web> <pages controlRenderingCompatibilityVersion="3.5" /> </system.web> </configuration>
但是这就无法利用 ASP.NET 4 的优点了,不推荐使用。
(责任编辑:admin) |
织梦二维码生成器
------分隔线----------------------------