Dotnetnuke popup login control with the modalpopupextender - authentication

I'm trying to create a modal popup login control for dnn using the ModalPopupExtender in the AjaxToolkit. An issue that I'm running into is that when I click the "Login" button on the popup login form, if the login fails for some reason or if the user needs to update some information before moving on, the modal popup is cleared and the user is never notified that they need to change the information and the login cannot proceed.
Does the ModalPopupExtender provide the ability somehow, to mimic a wizard type of interface so that if my login failed then the next control would be rendered in the popup (e.g. "user must change password"). Someone please help.

You can use the wizard control inside of the modalpopupextender.

Related

Access application gets full screen on double click from taskbar button

I developed a tool in MS Access where I hide the top pane of Access so that user can only close the application by clicking close button on the pop up form. That leaves no way for the user to minimize or restore Access window as is required.
However, the problem comes when a user clicks the Acess button twice from the taskbar on windows 10, it gets into full screen mode and user cannot restore it unless by closing and reopening the application. Can someone please provide a solution to this?

VB.NET: How to reload a form when a new user logs in?

I am developing an application in that user log in with his details based on his role we show different buttons and text boxes in the main form. But after logout, if login with different user names it is showing some details. This means my main form doesn't reload. Form load functions not executing. I am new to VB.NET can anyone please help me.

How do I bring a User control to the front in a form

I have a loginForm.vb, and 3 user controls: promptEmail.vb, promptLogin.vb, promptEmailRecovery.vb.
When I launch the app I want the Login Form to load the promptLogin.vb by bringing it to front.
Then when I click forgot password which is a button in promptLogin.vb, I want it to load the promptEmailRecovery.vb and hide the prompt login.
How can this be done?
Bring the login prompt to the front in the designer through its context menu there. Then it'll be in front when the form loads.
In the .Click event handler for the forgot password button, Call .BringToFront() on the promptEmailRecovery user control.

How to maintain text in popup control even if click outside popup control

In my windows phone application I add one popup control for user login.
If user enter his credentials and click outside popup control then the data vanishes.
how to maintain data in popup even if user clicked outside popup?
Is there any property so that we can make background page ideal when popup window comes?
use IsolatedStorage for that to maintain data.
see the link
http://www.kunal-chowdhury.com/2011/06/windows-phone-7-mango-tutorial-12-using.html
hope this will help you...

Disabling the initiation form when workflow is started manually in sharepoint 2010

I have a sharepoint site(sharepoint 2010).
I have created a custom action, on click of which will initiate the workflow associated to a list. When the user clicks on the custom action button, an initiation form will be shown which will have the Start and Cancel button. Only on click of this Start button, the workflow will Run. I want to avoid the last step of clicking on the Start button. What I want is "On click of Custom action, Workflow should Run. Initiation form should not come into picture at all". Is this possible ?
two solutions:
Say it's good because you make sure the user didn't make a mistake
Change the custom action form to a page where you start the workflow manually (via code) and then redirect the user to the home screen (you can also do that with a dialog and then there's no need for redirect)