If I use an ObjectDataSource (ODS) to populate a dropdownlist, is that dropdown being data bound every time the page posts back? If so, is there a way to control that?
I know with the "old way" you could bind the dropdown on if(!PostBack) and the dropdown would only be loaded when the page was initially requested.
From a performance perspective, I've read that ODS aren't as efficient as using a DAL sans ODS because ODS use reflection to parse the command parameters. Have people found this accurate?
I've noticed that after I have made changes to the DAL used by the ODS, sometimes it takes a while for the client application to recognized the new parameters. Is this due to reflection?
I know with the "old way" you could bind the dropdown on if(!PostBack) and the dropdown would only be loaded when the page was initially requested.
From a performance perspective, I've read that ODS aren't as efficient as using a DAL sans ODS because ODS use reflection to parse the command parameters. Have people found this accurate?
I've noticed that after I have made changes to the DAL used by the ODS, sometimes it takes a while for the client application to recognized the new parameters. Is this due to reflection?