Login Controls

As you can see when developping a webform, the tool box for the Web form in VS 2005 contains Login controls.I am looking for a way to call the same control in winforms using C#. Many thanks. Can someone help



Answer this question

Login Controls

  • HardEng

    WebForms is WebForms and WinForms is WinForms. The controls designed for one don't work in the other. To be placed on a Windows form as a control an object has to inherit the System.Windows.Forms.Control class. You would have to derive your own control from that class that mimicked the behaviour of the Web controls. There may even be some available on the Web from third-parties.
  • Login Controls