Server Error in '/' Application. Control 'ctl00_ctl00_ctl00_ContentPlaceHolderDefault_CreateUserWizard1' of type 'CreateUserWizard' must be placed inside a form tag with runat=server.
Searching the forum, I came across this advice: The "...must be placed inside a form tag with runat=server" message means you don't have your code running inside an ASPNET_FORM block. You can add this in your template. Either just for this page or in your master template so that all pages have the ASPNET_FORM available. I prefer to put it in only where it's needed but many people just put it in their master template.
No matter where you put it, this is what it looks like:
Some of this information is reaching back to 2008. Is this tutorial relevant to the 4.0.4 version? Is there an easier way to do this? All I really need is a login and a profile editor.
"Setting up membership in Umbraco" - Could it be that easy?
Hi.
Our install is umbraco v 4.0.4.2 (Assembly version: 1.0.3811.17115) and I am attempting to follow the process outlined at http://www.mortenbock.dk/blog/2009/04/01/setting-up-membership-in-umbraco.aspx. ;
but when I attempt to
I get a big error:
The "...must be placed inside a form tag with runat=server" message means you don't have your code running inside an ASPNET_FORM block. You can add this in your template. Either just for this page or in your master template so that all pages have the ASPNET_FORM available. I prefer to put it in only where it's needed but many people just put it in their master template.
No matter where you put it, this is what it looks like:
So I tried wrapping #4 in #5,
This returned a similar error.
Some of this information is reaching back to 2008. Is this tutorial relevant to the 4.0.4 version? Is there an easier way to do this? All I really need is a login and a profile editor.
Thanks in advance.
<form runat="server">YOUR_FORM_MACRO_HERE</form> if you are using ASP.net masterpages.
Excellent! We have a working login form.
Bless you my child and may all your children prosper.
No worries :-)
is working on a reply...