Re: Object created in one function, is null in an other function
For one thing, the global order is called "order," and in the confirm click, you are referencing ordersDAL, which I don't see ever being created in the code you posted....
Looking at this, I would guess that odersDAL is throwing the null reference exception, not order.
You can test by moving your instantiation outside of your method:
private OrderBO order = new OrderBO();
if you still get the null reference exception, you are not dealing with a null order.
Last edited by mrgr8avill; May 23rd, 2010 at 11:33 AM.
Re: Object created in one function, is null in an other function
Originally Posted by Vinzcent
In the function btnBevestig_Click is the Object order null, I don't see why?
I don't see why either, but it would help if you posted the code for the btnBevestig_Click method. Also, is this method called after the btnOrder_Click method?
Bookmarks