What’s the best way to add a loading page/splash page when a user first comes to my asp.net mvc application.
Is there a way to add it so I want have to change the way it is accessed?
What are some different ways to do this?
Thanks,
rod.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use jQuery to show a layer with absolute position and a high z-index (layer overlay) that hides all your application (for instance to show advertising) or simulate a loading page (but this is not a strict loading page).
I think you should avoid the use of this methods cause is annoying for the users.
Hope this helps.