程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> AjaxControlToolKit DropDownExtender(下拉擴展控件)使用方法

AjaxControlToolKit DropDownExtender(下拉擴展控件)使用方法

編輯:ASP.NET基礎
下面大概吧使用方法介紹下(這裡使用Lable控件為例子):
1. 給頁面添加一個ScriptManager控件(使用方法還沒有研究完全,研究完全了試驗寫點經驗)
2.添加一個控制無刷新的UpdatePanel控件 (同上)
3.在UpdatePanel控件中 添加倆個 Label控件 一個用來添加DropDownExtender擴展,一個用來顯示上個Label中取到的值,一個Panel控件 在Panel控件中添加若干個LinkButton控件
4.所有LinkButton公用一個Click事件,用來取值或者觸發其他事件,我下面的例子主要是用來取值的。
5.在UpdatePanel中添加一個DropDownExtender控件
a.設置DropDownExtender屬性:TargetControlID (目標控件ID 或者 靶子控件ID的意思吧) 要吧DropDownExtender擴展到那 個控件上,這裡我是擴展到Label控件上,
b.這個Label控件的屬性中會出現一個Extender的屬性 裡面有DropDownControlID 這裡設置上面的PanelID
6.添加第3步中添加的LinkButton的事件
下面是簡單例子的代碼:
頁面代碼: 
復制代碼 代碼如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="test2.aspx.cs" Inherits="test2" %>
<%@ Register Assembly="CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304"
Namespace="CrystalDecisions.Web" TagPrefix="CR" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>
<!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>DropDownExtender簡單練習</title>
<style type="text/css">
#Panel1
{
background:#ffcc00;
font-size:12px;
padding:0px;
border:solid 1px;
}
#LinkButton1,#LinkButton2,#LinkButton3,#LinkButton4
{
color:#666;
font-size:12px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
 </div>
<br />
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<asp:Label ID="Label2" runat="server" Text="Label" Width="129px"></asp:Label><br />
<br />
<asp:Label ID="Label1" runat="server" Text="請選擇" Width="91px"></asp:Label>
<asp:Panel ID="Panel1" runat="server" Width="85px" Style="visibility: hidden">
<asp:LinkButton ID="LinkButton1" runat="server" OnClick="lkbtn_Click">西安</asp:LinkButton><br />
<asp:LinkButton ID="LinkButton2" runat="server" OnClick="lkbtn_Click">上海</asp:LinkButton><br />
<asp:LinkButton ID="LinkButton3" runat="server" OnClick="lkbtn_Click">深圳</asp:LinkButton><br />
<asp:LinkButton ID="LinkButton4" runat="server" OnClick="lkbtn_Click">北京</asp:LinkButton></asp:Panel>
<cc1:DropDownExtender ID="DropDownExtender1" runat="server" DropDownControlID="Panel1"
TargetControlID="Label1">
</cc1:DropDownExtender>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
</html>

cs文件代碼:
復制代碼 代碼如下:
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
public partial class test2 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lkbtn_Click(object sender, EventArgs e)
{
Label1.Text = ((LinkButton)sender).Text;
Label2.Text = Label1.Text;
}
}

先就介紹這點吧,leader過來了
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved