Reputation: 37
I'm fairly new to programming and the .net framework, I'm trying to create a registration page that would require users to move from one step to another. There would be a button at the bottom of each page that takes the user to the next page, however is there a way I can do this without haveing to create multiple pages. I've tried creating multiple forms in the asp.net page but i can't add server controls to the other forms as they don't have the attribute "runat='server'".
Please help, how do i go about it?
Upvotes: 2
Views: 7281
Reputation: 26
Using Jquery you can get multiple page form facility....... https://www.mindstick.com/forum/33822/how-to-use-jquery-steps-form-in-asp-dot-net
Upvotes: 0
Reputation: 6904
Several ways you can accomplish this:
div
and use javascript to show/hide each sectionasp:Panel
and show/hide each section on postbackUpvotes: 4