我正在尝试创建自定义webpart,我遇到了这个错误:
在我的源代码中,我有一个表格,其中一个单元格将包含SharePoint:DateTimeControl。
<asp:Table ID="interviewerAndApplicants" Visible="False" runat="server" Width="50%">
<asp:TableRow>
<asp:TableCell>
Interview Timeslot: <SharePoint:DateTimeControl ID="interviewSlot" runat="server" />
</asp:TableCell>
</asp:TableRow>
</asp:Table>
奇怪的是,如果SharePoint:DateTimeControl
不在表格单元格内,它在设计中完美显示。但是当它放在一个单元格内时,会导致错误:
“错误渲染控件:对象引用未设置为实例 对象“
在设计师视图中。
我究竟做错了什么/错过了什么?感谢。