Hi,
I'd like to pass data between two page wizard steps. I tried to use SaveStepData and add the data as a property on the event args, but that doesn't seem to work. Is there another way?
Thanks
page wizard doesn't have any persistent storage. Event args are stored within the request only. You have to use your custom logic to do this. With dependence on data structure you can use Session, Cookie, Cache, File system...
Jakub
Thanks. I used the session in my web part.
Please, sign in to be able to submit a new answer.