我正在VS2010上创建一个连接的可视化Web部件。
这是我的公共部分类ViewEmployeeUserControl:UserControl
#region FindByEmpID
public void FindEmpByID_Click(object sender, EventArgs e)
{
ViewEmployee vwEmp = new ViewEmployee();
vwEmp.EmpUID = Int32.Parse(txtUID.Text);
这是我的公共类ViewEmployee:WebPart,EmployeeSchedIF 它使用EmployeeSchedIF接口
public int _empuid;
protected override void CreateChildControls()
{
Control control = Page.LoadControl(_ascxPath);
Controls.Add(control);
}
public int EmpUID
{
get{return _empuid;}
set{_empuid = value;}
}
[ConnectionProvider("EmpUID")]
public EmployeeSchedIF SendUID()
{
return (this);
}
}
它的工作原理如下:
我的问题是:
我可能错过了什么?
TIA!