Using localStorage in javascript we can easily get the previous step data in the current step.
// Set value into previous step
window.localStorage.setItem('studentregistrationadvancestudentGuid', studentGuid);
// Get value into next step
var requeststudentId = window.localStorage.getItem('studentregistrationadvancestudentGuid');
Comments
Post a Comment