程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> .NET實例教程 >> 實現aspx頁面中,獲得焦點,高亮顯示,離開時恢復 效果(完整代碼)

實現aspx頁面中,獲得焦點,高亮顯示,離開時恢復 效果(完整代碼)

編輯:.NET實例教程

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

<!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>Untitled Page</title>
    <style>
        .highlight
        {
            background-color: yellow;
            color: blue;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    
<asp:textbox runat="server" ></ASP:textbox>
    </div>
    <asp:TextBox ID="TextBox1" runat="server"></ASP:TextBox>
    </form>
</body>
</Html>

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.XML.Linq;
namespace WebApplication1
{
    public static class Assistant
    {
        public static void SetInputControlsHighlight(Control container, string className, bool onlyTextBoxes)
        {
            foreach (Control ctl in container.Controls)
            {
                if ((onlyTextBoxes && ctl is TextBox) || (!onlyTextBoxes && (ctl is TextBox || ctl is DropDownList || ctl is ListBox || ctl is CheckBox || ctl is RadioButton || ctl is RadioButtonList || ctl is CheckBoxList)))
                {
                    WebControl wctl = ctl as WebControl;
                    wctl.Attributes.Add("onfocus", string.Format(
                       "this.className = '{0}';", className));
     &
nbsp;              wctl.Attributes.Add("onBlur", "this.className='';");
                }
                else
                {
                    if (ctl.Controls.Count > 0)
                        SetInputControlsHighlight(ctl, className, onlyTextBoxes);
                }
            }
        }
    }


}


using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.XML.Linq;

namespace WebApplication1
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            Assistant.SetInputControlsHighlight(this, "highlight", false);
        }
    }
}
http://blog.csdn.Net/metababy/archive/2009/04/14/4072424.ASPx



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved