When you create a silverlight 4 business application, using VS2010, by default you will get a login and registration page. I need to customize the registration page, to add more fields. How do I do that? Thanks in advance.
When you create a silverlight 4 business application, using VS2010, by default you will
Share
The Web project generated has a class called
BusinessApplication.Web.RegistrationData, which you can modify to include more fields. This same class is then generated on the client side for the Silverlight App, and the DataForm control used on the RegistrationForm will automatically detect the fields in theRegistrationDataclass.