The problem is that when returned the page is empty. It's still within the website template but there is no trace of the form at all and there are no errors, just blank. What's stranger is this very form was working a few days ago and now I can't figure out what's gone wrong.
Can anyone think of anything I can check? I'm at a loss because there are no errors I can even debug!
Have your tried changing the line to just return;?
It looks like you're in a view already, so that should stop it from doing any more page logic, and hopefully your validation information will still be intact.
return CurrentUmbracoPage() just shows blank page
Hi,
I have a form which is being rendered with:
If the model has errors I'm using:
The problem is that when returned the page is empty. It's still within the website template but there is no trace of the form at all and there are no errors, just blank. What's stranger is this very form was working a few days ago and now I can't figure out what's gone wrong.
Can anyone think of anything I can check? I'm at a loss because there are no errors I can even debug!
Thanks
Hi,
Have your tried changing the line to just
return;
? It looks like you're in a view already, so that should stop it from doing any more page logic, and hopefully your validation information will still be intact.is working on a reply...