首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

这个返回类型如何写呢

2012-05-16 
这个返回类型怎么写呢有一个方法,会返回TextBox或RadioButtonList或DropDownList等web控件,那么类型应该写

这个返回类型怎么写呢
有一个方法,会返回TextBox或RadioButtonList或DropDownList等web控件,那么类型应该写什么呢?
有无可能做到呢?

public ??? GetWebControl

[解决办法]
public Control GetWebControl
[解决办法]
Control
[解决办法]
public Control GetWebControl()
{
你的实现代码;
}

Control c= GetWebControl();
if(c is TextBox)
{
TextBox tb = c as TextBox;
}

热点排行