J
J055
Hi
I'm using VS2005. I get the above error when trying to build the solution.
Intellisense is OK.
// Code behind
protected void odsPublication_Inserted(object sender,
ObjectDataSourceStatusEventArgs e)
{
if (e.Exception == null)
{
blMessages.Visible = false;
}
}
//This is the webcontrol and ObjectDataSource
<asp:BulletedList ID="blMessages" runat="server" ForeColor="Red"
Visible="False">
</asp:BulletedList>
<asp:ObjectDataSource ID="odsPublication" runat="server"
InsertMethod="AddPublication"
OnInserted="odsPublication_Inserted">
<SelectParameters>
....
</SelectParameters>
<InsertParameters>
....
</InsertParameters>
</asp:ObjectDataSource>
Can you tell me what it really means and how to fix it?
Thanks
Andrew
I'm using VS2005. I get the above error when trying to build the solution.
Intellisense is OK.
// Code behind
protected void odsPublication_Inserted(object sender,
ObjectDataSourceStatusEventArgs e)
{
if (e.Exception == null)
{
blMessages.Visible = false;
}
}
//This is the webcontrol and ObjectDataSource
<asp:BulletedList ID="blMessages" runat="server" ForeColor="Red"
Visible="False">
</asp:BulletedList>
<asp:ObjectDataSource ID="odsPublication" runat="server"
InsertMethod="AddPublication"
OnInserted="odsPublication_Inserted">
<SelectParameters>
....
</SelectParameters>
<InsertParameters>
....
</InsertParameters>
</asp:ObjectDataSource>
Can you tell me what it really means and how to fix it?
Thanks
Andrew