I have two steps in on the createuserwizard control. Could you give me some
more details on how to refer to the email textbox? Why I try to do this is
because I want users to login using email as their username. I have the
username textbox hidden on the form and when the 'create user' button is
clicked I want the email's value to be placed in the username textbox. What
event could be used to insert value in the username textbox before the
username is validated or the data is saved.
--
L. A. Jones
Michael Nemtsev said:
just enumerate the child controls of your root CreateUser control to find
your one
--
WBR, Michael Nemtsev [.NET/C# MVP].
Blog:
http://spaces.live.com/laflour
Dave said:
I have a textbox on a CreateUser control. I want to assign a value to this
textbox programmatically. How can I access this control? Thanks.