我的自定义控件里有一个Buttion和一个文本框
我在web页中引用该自定义控件,我怎样才能找到自定义控件下的buttion按钮的ID呢?
我是这样写代码的cs下
wucl gv = (wucl)sender;
TextBox txt = (TextBox)gv.FindControl("TextBox1");
Response.Write("<script>alert('" + txt.Text + "');</script>");
return;
html下:
<uc1:wucl ID="Wucl1" runat="server" />
提示:
Unable to cast object of type 'ASP.default3_aspx' to type 'wucl'.
多谢
[求助]用户自定义控件