I'm slowly getting to get this to work.
I have a dropdown where I load Events, when I click on ab Event I will, in the change event set Selected SaeId
In the page load event I have defined the stored procedure that takes SaeId
But how to I do so that this is executed and new result i showed in the Datagrid
So I should move the invoke the the change or should i copy. Ut wokrs!""
Yes with a stored procedure, the procedure must be run again to get the results after the parameter has changed, so Reload() generally won't be sufficient.
Load() will do the trick, but it may be overkill as it reloads the whole page. You just need to rerun the stored procedure so invoking again it via the dropdown's change event, etc. may be a better way to go.
SloSuenos