J
Jeff
hey
asp.net 2.0
my code crashes in the ItemDataBound event on my webpage.
my webpage has a ObjectDataSource (odsMessage), here are the settings I've
set in it's properties:
SelectMethod = getTestData
TypeName = testLogic.networkLogic
SelectParameters = I specified 2 parameters
This objectdatasource is the datasource to my Repeater control :
protected void Page_Load(object sender, EventArgs e) {
rptMessage.DataBind();
}
I've debugged the code and the getTestData method gets the correct
parameters and this method returns the correct value, but in the
ItemDataBound event the e.Item.DataBound is null....
Any suggestions to what is wrong here?
Jeff
asp.net 2.0
my code crashes in the ItemDataBound event on my webpage.
my webpage has a ObjectDataSource (odsMessage), here are the settings I've
set in it's properties:
SelectMethod = getTestData
TypeName = testLogic.networkLogic
SelectParameters = I specified 2 parameters
This objectdatasource is the datasource to my Repeater control :
protected void Page_Load(object sender, EventArgs e) {
rptMessage.DataBind();
}
I've debugged the code and the getTestData method gets the correct
parameters and this method returns the correct value, but in the
ItemDataBound event the e.Item.DataBound is null....
Any suggestions to what is wrong here?
Jeff