Can we have form inside a form?

Hi All,Can we have form inside a form? Thankskiran
[78 byte] By [kiran_pangaa] at [2007-11-27 6:48:28]
# 1
Which application form you are talking about?
achyuthba at 2007-7-12 18:21:52 > top of Java-index,Java Essentials,Java Programming...
# 2
My Application is MVC. i have to send a request to third party and they want that request should be sent by POST method. here i want to use one more <form> inside a <form> to submit that request as POST method.
kiran_pangaa at 2007-7-12 18:21:52 > top of Java-index,Java Essentials,Java Programming...
# 3
Try it. If it works, well and good. If it doesn't, experience has taught you :)
Jamwaa at 2007-7-12 18:21:52 > top of Java-index,Java Essentials,Java Programming...
# 4

> Can we have form inside a form?

Yes. However you could find out that , regardless of which form gets submitted, all input fields of both forms would get submitted anyway.

That would render nested forms quite useless.

But as it has been said, why don't you try it and see for yourself?

Keep in mind that, you may think you need nested forms, but you really do not need that, and there is a problem with your design.

karma-9a at 2007-7-12 18:21:52 > top of Java-index,Java Essentials,Java Programming...
# 5
In my experience it did not work well if we had a form inside a form. It is also against the rules. Contents * In HTML 4.0 Strict, one or more SCRIPT or block-level elements except FORM* In HTML 4.0 Transitional, inline elements or block-level elements except
BIJ001a at 2007-7-12 18:21:52 > top of Java-index,Java Essentials,Java Programming...