主頁(yè) > 知識(shí)庫(kù) > 關(guān)于兩個(gè)自定義控件的取值問(wèn)題及接口的應(yīng)用

關(guān)于兩個(gè)自定義控件的取值問(wèn)題及接口的應(yīng)用

熱門(mén)標(biāo)簽:申請(qǐng)400電話(huà)手續(xù) 百度ai地圖標(biāo)注 同安公安400電話(huà)怎么申請(qǐng)流程 南陽(yáng)外呼系統(tǒng)定制化 合肥電銷(xiāo)外呼系統(tǒng)哪家公司做的好 玉林市機(jī)器人外呼系統(tǒng)哪家好 預(yù)測(cè)式外呼系統(tǒng)使用說(shuō)明 蘋(píng)果手機(jī)凱立德地圖標(biāo)注 電話(huà)機(jī)器人軟件銷(xiāo)售工作
“一個(gè).aspx的頁(yè)面中,用到了兩個(gè)用戶(hù)控件,其中想做的到A控件有一個(gè)按鈕,點(diǎn)擊的時(shí)候獲取到B控件中的一個(gè)textbox的值。

因?yàn)樵谏傻臅r(shí)候名字會(huì)改變,用findcontrol的時(shí)候名字該如何寫(xiě)呢?
另外像這種問(wèn)題有幾種解決的辦法呢?”

論壇上看到這個(gè)問(wèn)題,Insus.NET提供自己的解決方法,先看看解決運(yùn)行的效果:
 
首先創(chuàng)建一個(gè)站點(diǎn),然后創(chuàng)建兩個(gè)用戶(hù)控件,一個(gè)是UcA,一個(gè)是UcB。 在UcB的控件上拉一個(gè)TextBox。
復(fù)制代碼 代碼如下:

%@ Control Language="C#" AutoEventWireup="true" CodeFile="UcB.ascx.cs" Inherits="UcB" %>
asp:TextBox ID="TextBox1" runat="server">/asp:TextBox>

創(chuàng)建一個(gè)接口IGetValue:
復(fù)制代碼 代碼如下:

IGetValue.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
/// summary>
/// Summary description for IGetValue
/// /summary>
namespace Insus.NET
{
public interface IGetValue
{
string GetValue();
}
}

接下來(lái),用戶(hù)控件UcB實(shí)現(xiàn)這個(gè)接口,接口返回TextBox的Text值。
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Insus.NET;
public partial class UcB : System.Web.UI.UserControl,IGetValue
{
protected void Page_Load(object sender, EventArgs e)
{
}
public string GetValue()
{
return this.TextBox1.Text.Trim();
}
}

創(chuàng)建一個(gè)aspx頁(yè)面,如Default.aspx,切換至設(shè)計(jì)模式,把兩個(gè)用戶(hù)控件UcA,UcB拉至Default.aspx:
復(fù)制代碼 代碼如下:

%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
%@ Register Src="UcA.ascx" TagName="UcA" TagPrefix="uc1" %>
%@ Register Src="UcB.ascx" TagName="UcB" TagPrefix="uc2" %>
!DOCTYPE html>
html xmlns="http://www.w3.org/1999/xhtml">
head runat="server">
title>/title>
/head>
body>
form id="form1" runat="server">
fieldset>
legend>UcA
/legend>
uc1:UcA ID="UcA1" runat="server" />
/fieldset>
fieldset>
legend>UcB
/legend>
uc2:UcB ID="UcB1" runat="server" />
/fieldset>
/form>
/body>
/html>

到這里,再創(chuàng)建一個(gè)接口Interface,目的是為了獲取UcB這個(gè)用戶(hù)控件。
復(fù)制代碼 代碼如下:

IGetUserControl.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
/// summary>
/// Summary description for IGetUserControl
/// /summary>
namespace Insus.NET
{
public interface IGetUserControl
{
UserControl GetUc();
}
}

接口創(chuàng)建好之后,在Default.aspx.cs實(shí)現(xiàn)這個(gè)IGetUserControl接口。
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Insus.NET;
public partial class _Default : System.Web.UI.Page,IGetUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public UserControl GetUc()
{
return this.UcB1;
}
}

到最后,我們?cè)赨cA這個(gè)用戶(hù)控件的按鈕Click事件寫(xiě):
復(fù)制代碼 代碼如下:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using Insus.NET;
public partial class UcA : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
IGetUserControl ucb = (IGetUserControl)this.Page;
IGetValue value = (IGetValue)ucb.GetUc();
Response.Write("scr" + "ipt>alert('" + value.GetValue() + "')/scr" + "ipt>");
}
}
您可能感興趣的文章:
  • .Net WInform開(kāi)發(fā)筆記(三)談?wù)勛灾瓶丶?自定義控件)
  • asp.net自定義控件回發(fā)數(shù)據(jù)實(shí)現(xiàn)方案與代碼
  • asp.net中使用自定義控件的方式實(shí)現(xiàn)一個(gè)分頁(yè)控件的代碼
  • asp.net DropDownList自定義控件,讓你的分類(lèi)更清晰
  • Asp.net 動(dòng)態(tài)加載用戶(hù)自定義控件,并轉(zhuǎn)換成HTML代碼
  • asp.net 自定義控件實(shí)現(xiàn)無(wú)刷新上傳圖片,立即顯示縮略圖,保存圖片縮略圖
  • asp.net自定義控件代碼學(xué)習(xí)筆記
  • asp.net 虛方法、抽象方法、接口疑問(wèn)

標(biāo)簽:嘉興 南昌 臺(tái)州 揚(yáng)州 南京 南京 海南 淄博

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《關(guān)于兩個(gè)自定義控件的取值問(wèn)題及接口的應(yīng)用》,本文關(guān)鍵詞  關(guān)于,兩個(gè),自定義,控件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《關(guān)于兩個(gè)自定義控件的取值問(wèn)題及接口的應(yīng)用》相關(guān)的同類(lèi)信息!
  • 本頁(yè)收集關(guān)于關(guān)于兩個(gè)自定義控件的取值問(wèn)題及接口的應(yīng)用的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章