想知道findcontol的用法

时间:2019-05-15 15:44:24

标签: c# asp.net .net

我想知道下面两个之间的区别:

1:(Control)this.FindControl("ControlName");

2:FindControl<Control> (ControlName) as control

C#后面的代码:

Button butAddReason;
butAddReason.Attributes.Add("onclick", "return displayReason('" + i + j + "','" + i + "')");

客户端:

<asp:Button CssClass="form_buttons reason_code" ID="butReason11" runat="server" Text="Add More Reason Codes"
                                        Style="display: block;" UseSubmitBehavior="False" />

疑问: 如果我像这样使用:
(Control)this.FindControl("ControlName"); 充满目的

但是,如果我使用的是:
FindControl<Control> (ControlName) as control

不是。

请提出建议 谢谢

0 个答案:

没有答案