I have a form starting with:
<form method='get' action'page.asp'>
and then quite a bit of code
and then </form>

But now, when I save the file, FP insert </form> right after starting the
form thus ending it immidiatly. Due to this the submit-buttons which are
further down the page don't work.
Why does it insert the </form> by itself when I save the page?

Jesper

Re: frontpage inserts </form> by itself by Jesper

Jesper
Wed Dec 07 01:29:48 CST 2005

> But now, when I save the file, FP insert </form> right after starting the
> form thus ending it immidiatly. Due to this the submit-buttons which are
> further down the page don't work.
> Why does it insert the </form> by itself when I save the page?

I think I have it solved. It seems it had to do with a nesting issue around
a <table>.

Jesper



Re: frontpage inserts </form> by itself by Kevin

Kevin
Wed Dec 07 08:36:39 CST 2005

Hi Jesper,

For future reference, while some browsers will allow some element
overlapping, it is best to avoid it completely. By element overlapping, I
mean, for example:

<form>
<table>
<tr>
<td></td>
<tr>
</form>
</table>

... where the form begins outside the table, and ends inside the table.
There are some rather complex rules regarding this in older HTML
specifications, but the XHTML specification, for example, simply doesn't
allow any of it. Nesting (elements inside other lements) is okay, as long as
elements do not overlap. If you stick with this convention, you won't go
wrong.

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but you can't make it stink.

"Jesper Fjølner" <askfor@myemail.com> wrote in message
news:%23Z54qAw%23FHA.272@tk2msftngp13.phx.gbl...
>> But now, when I save the file, FP insert </form> right after starting the
>> form thus ending it immidiatly. Due to this the submit-buttons which are
>> further down the page don't work.
>> Why does it insert the </form> by itself when I save the page?
>
> I think I have it solved. It seems it had to do with a nesting issue
> around a <table>.
>
> Jesper
>



Re: frontpage inserts </form> by itself by Murray

Murray
Wed Dec 07 08:47:17 CST 2005

> There are some rather complex rules regarding this in older HTML
> specifications, but the XHTML specification, for example, simply doesn't
> allow any of it.

HTML 4.01/4/3 doesn't allow it either. I am curious which older specs you
are referring to?

--
Murray
============

"Kevin Spencer" <kevin@DIESPAMMERSDIEtakempis.com> wrote in message
news:%23PUKkuz%23FHA.1028@TK2MSFTNGP11.phx.gbl...
> Hi Jesper,
>
> For future reference, while some browsers will allow some element
> overlapping, it is best to avoid it completely. By element overlapping, I
> mean, for example:
>
> <form>
> <table>
> <tr>
> <td></td>
> <tr>
> </form>
> </table>
>
> ... where the form begins outside the table, and ends inside the table.
> There are some rather complex rules regarding this in older HTML
> specifications, but the XHTML specification, for example, simply doesn't
> allow any of it. Nesting (elements inside other lements) is okay, as long
> as elements do not overlap. If you stick with this convention, you won't
> go wrong.
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> .Net Developer
> You can lead a fish to a bicycle,
> but you can't make it stink.
>
> "Jesper Fjølner" <askfor@myemail.com> wrote in message
> news:%23Z54qAw%23FHA.272@tk2msftngp13.phx.gbl...
>>> But now, when I save the file, FP insert </form> right after starting
>>> the form thus ending it immidiatly. Due to this the submit-buttons which
>>> are further down the page don't work.
>>> Why does it insert the </form> by itself when I save the page?
>>
>> I think I have it solved. It seems it had to do with a nesting issue
>> around a <table>.
>>
>> Jesper
>>
>
>



Re: frontpage inserts </form> by itself by Kevin

Kevin
Wed Dec 07 10:09:32 CST 2005

Hi Murray,

I'd rather not say. I've had enough controversies along these lines lately.
;-)

--
HTH,

Kevin Spencer
Microsoft MVP
.Net Developer
You can lead a fish to a bicycle,
but you can't make it stink.

"Murray" <forums@HAHAgreat-web-sights.com> wrote in message
news:ujrso1z%23FHA.228@TK2MSFTNGP12.phx.gbl...
>> There are some rather complex rules regarding this in older HTML
>> specifications, but the XHTML specification, for example, simply doesn't
>> allow any of it.
>
> HTML 4.01/4/3 doesn't allow it either. I am curious which older specs you
> are referring to?
>
> --
> Murray
> ============
>
> "Kevin Spencer" <kevin@DIESPAMMERSDIEtakempis.com> wrote in message
> news:%23PUKkuz%23FHA.1028@TK2MSFTNGP11.phx.gbl...
>> Hi Jesper,
>>
>> For future reference, while some browsers will allow some element
>> overlapping, it is best to avoid it completely. By element overlapping, I
>> mean, for example:
>>
>> <form>
>> <table>
>> <tr>
>> <td></td>
>> <tr>
>> </form>
>> </table>
>>
>> ... where the form begins outside the table, and ends inside the table.
>> There are some rather complex rules regarding this in older HTML
>> specifications, but the XHTML specification, for example, simply doesn't
>> allow any of it. Nesting (elements inside other lements) is okay, as long
>> as elements do not overlap. If you stick with this convention, you won't
>> go wrong.
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> .Net Developer
>> You can lead a fish to a bicycle,
>> but you can't make it stink.
>>
>> "Jesper Fjølner" <askfor@myemail.com> wrote in message
>> news:%23Z54qAw%23FHA.272@tk2msftngp13.phx.gbl...
>>>> But now, when I save the file, FP insert </form> right after starting
>>>> the form thus ending it immidiatly. Due to this the submit-buttons
>>>> which are further down the page don't work.
>>>> Why does it insert the </form> by itself when I save the page?
>>>
>>> I think I have it solved. It seems it had to do with a nesting issue
>>> around a <table>.
>>>
>>> Jesper
>>>
>>
>>
>
>



RE: frontpage inserts </form> by itself by AMysticWeb

AMysticWeb
Wed Dec 07 23:16:03 CST 2005

Also, make sure "Automatically enclose form fields within a form" is
unchecked.

To access this in 2K , '02 & '03 Tools >> Page Options >> General tab.

Just be sure to start an FP form with Insert >> Form >> Form

Mike Smith,

http://FrontPageForms.com
FrontPage Form Tutorials
& Form Script Examples



"Jesper Fjølner" wrote:

> I have a form starting with:
> <form method='get' action'page.asp'>
> and then quite a bit of code
> and then </form>
>
> But now, when I save the file, FP insert </form> right after starting the
> form thus ending it immidiatly. Due to this the submit-buttons which are
> further down the page don't work.
> Why does it insert the </form> by itself when I save the page?
>
> Jesper
>
>
>