.state('Wizard', {
url: '/Wizard/:Email',
templateUrl: '/Common/_Wizard',
controller: 'Common_Wizard',
}
We are seeing email address in our url like
localhost:15646/Home/Index#/Wizard/[email protected]/Loan/Loan
[email protected] this is an email address.and this email address is used in different controller and views. how we can hide this and access on other controller and views. we dont want to use any local storage or service.
Thanks in Advance