将数据绑定到webpart和masterpage中的detailsview

时间:2009-11-12 09:59:12

标签: master-pages web-parts

我在webpartzone中有一个带有webpartzone的母版页我现在有一个详细信息视图我想将数据绑定到我尝试的其中一个内容表单的详细信息视图但是它没有任何想法 我的代码是 Dim myMaster As MasterPage = DirectCast(Me.Master,MasterPage)          Dim webpt As WebPartZone = DirectCast(myMaster.FindControl(“WebPartZone1”),WebPartZone)         如果Not IsNothing(webpt)那么         Dim dv As DetailsView = CType(myMaster.FindControl(“dvapqp”),DetailsView)         dv.DataSource = ds.Tables(0)         dv.DataBind()         结束如果

1 个答案:

答案 0 :(得分:0)

最后我将回答我自己的问题:-)我使用了一个用户控件来显示webparts并访问它我在blog post

中解释了它