I am using ASP.NET and C#.In register page after click on submit i am storing all the details in database and redirecting to login page.So in login page i need to display message like successfully registered.
Can someone tell me is it possible?
Thanks.
You may use Session, QueryString, Cookie for this purpose.
But I would suggest show you message on same Register page. And put continue button on page, that will redirect user to Home or other page.
Why I`m saying show message on same page, because one thing is fixed you are going to redirect user if registration was successful, if not you will show the errors.
Session, QueryString will be easy and handy option for this:
Or
You may show this value on label on the page.