Blogs Tagged: javascript

Platform Independent Opt-In Forms In 3 Easy Steps!

Date:
14 Jan 2014
Views:
7922
Comments:
0
Category:
News & Updates
Author:
Max Lavrov

Platform independent opt-in forms

“The embed form code isn't working on my ASP.NET page!”

This is common problem you may come across if you attempt to put any form inside another form. Even though it is allowed to have multiple forms on page, if we nest one form inside another, it doesn’t work.

This is because nesting of forms is not allowed as per HTML specs (W3 specs).

For asp.net page it is even more strict. Only one form can be run at =”server”. ASP.NET requires the elements to be inside the form, and has the “main” <form> tag on the page. So there is no way to put another one inside of it easily.

Continue Reading