| Home | Forums | Reviews | Articles | Register |
![]() |
| Thread Tools | Rate Thread |
|
|
|
| |
|
Murray
Guest
Posts: n/a
|
Can you show me an example of the code you have copied, and the resulting
code after you paste, please? -- Murray -------------- MVP FrontPage "fisherwoman" <(E-Mail Removed)> wrote in message news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... >I have tables set up in my website, and since upgrading to Frontpage 2003, > everytime I copy the content of one cell & paste to another, it adds a > zero > to each line of code. I was always able to do this in FrontPage 2002, so > I > don't understand what is happening. > > Any suggestions? > > Thanks much! |
|
||
|
||||
|
=?Utf-8?B?ZmlzaGVyd29tYW4=?=
Guest
Posts: n/a
|
Hi Murray,
Here is the original code: <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"> <input type="hidden" name="bn" value="AMPPFPWZ.301"> <input type="hidden" name="cmd" value="_cart"> <input type="hidden" name="add" value="1"> <input type="hidden" name="business" value="(E-Mail Removed)"> <input type="hidden" name="item_name" value="Enamel Beach Babe"> <input type="hidden" name="item_number" value> <input type="hidden" name="amount" value="2.99"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="cn" value="(optional instructions)"> <input type="hidden" name="no_shipping" value="0"> <input type="hidden" name="undefined_quantity" value="0"> <input type="hidden" name="return" value="http://www.classiccitycharms.com/thankyou.htm"> <input type="hidden" name="cancel_return" value="http://www.classiccitycharms.com"> Here is what I get when I copy & paste the code: <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"> <input type="hidden" name="bn0" value="AMPPFPWZ.301"> <input type="hidden" name="cmd0" value="_cart"> <input type="hidden" name="add0" value="1"> <input type="hidden" name="business0" value="(E-Mail Removed)"> <input type="hidden" name="item_name0" value="Enamel Beach Babe"> <input type="hidden" name="item_number0" value> <input type="hidden" name="amount0" value="2.99"> <input type="hidden" name="currency_code0" value="USD"> <input type="hidden" name="cn0" value="(optional instructions)"> <input type="hidden" name="no_shipping0" value="0"> <input type="hidden" name="undefined_quantity0" value="0"> <input type="hidden" name="return0" value="http://www.classiccitycharms.com/thankyou.htm"> <input type="hidden" name="cancel_return0" value="http://www.classiccitycharms.com"> "Murray" wrote: > Can you show me an example of the code you have copied, and the resulting > code after you paste, please? > > -- > Murray > -------------- > MVP FrontPage > > > "fisherwoman" <(E-Mail Removed)> wrote in message > news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... > >I have tables set up in my website, and since upgrading to Frontpage 2003, > > everytime I copy the content of one cell & paste to another, it adds a > > zero > > to each line of code. I was always able to do this in FrontPage 2002, so > > I > > don't understand what is happening. > > > > Any suggestions? > > > > Thanks much! > > > |
|
||
|
||||
|
Thomas A. Rowe
Guest
Posts: n/a
|
Your problem is that you must assign each form a unique name in FP that appears on a page with more
then a single form.. Example: <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form1"> next form <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form2"> etc. ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: http://support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "fisherwoman" <(E-Mail Removed)> wrote in message news:7714843C-24BD-47B4-855D-(E-Mail Removed)... > Hi Murray, > > Here is the original code: > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > method="post"> > <input type="hidden" name="bn" value="AMPPFPWZ.301"> > <input type="hidden" name="cmd" value="_cart"> > <input type="hidden" name="add" value="1"> > <input type="hidden" name="business" > value="(E-Mail Removed)"> > <input type="hidden" name="item_name" value="Enamel Beach Babe"> > <input type="hidden" name="item_number" value> > <input type="hidden" name="amount" value="2.99"> > <input type="hidden" name="currency_code" value="USD"> > <input type="hidden" name="cn" value="(optional instructions)"> > <input type="hidden" name="no_shipping" value="0"> > <input type="hidden" name="undefined_quantity" value="0"> > <input type="hidden" name="return" > value="http://www.classiccitycharms.com/thankyou.htm"> > <input type="hidden" name="cancel_return" > value="http://www.classiccitycharms.com"> > > > Here is what I get when I copy & paste the code: > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > method="post"> > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> > <input type="hidden" name="cmd0" value="_cart"> > <input type="hidden" name="add0" value="1"> > <input type="hidden" name="business0" > value="(E-Mail Removed)"> > <input type="hidden" name="item_name0" value="Enamel Beach Babe"> > <input type="hidden" name="item_number0" value> > <input type="hidden" name="amount0" value="2.99"> > <input type="hidden" name="currency_code0" value="USD"> > <input type="hidden" name="cn0" value="(optional instructions)"> > <input type="hidden" name="no_shipping0" value="0"> > <input type="hidden" name="undefined_quantity0" value="0"> > <input type="hidden" name="return0" > value="http://www.classiccitycharms.com/thankyou.htm"> > <input type="hidden" name="cancel_return0" > value="http://www.classiccitycharms.com"> > > > "Murray" wrote: > >> Can you show me an example of the code you have copied, and the resulting >> code after you paste, please? >> >> -- >> Murray >> -------------- >> MVP FrontPage >> >> >> "fisherwoman" <(E-Mail Removed)> wrote in message >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... >> >I have tables set up in my website, and since upgrading to Frontpage 2003, >> > everytime I copy the content of one cell & paste to another, it adds a >> > zero >> > to each line of code. I was always able to do this in FrontPage 2002, so >> > I >> > don't understand what is happening. >> > >> > Any suggestions? >> > >> > Thanks much! >> >> >> |
|
||
|
||||
|
=?Utf-8?B?ZmlzaGVyd29tYW4=?=
Guest
Posts: n/a
|
The first batch of code always worked when using FrontPage 2002, and would
work when copied. Now that I have upgraded to FrontPage 2003, it doesn't. Is this something new in 2003? Thanks! "Thomas A. Rowe" wrote: > Your problem is that you must assign each form a unique name in FP that appears on a page with more > then a single form.. > > Example: > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form1"> > > next form > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form2"> > > etc. > > > ============================================== > Thomas A. Rowe (Microsoft MVP - FrontPage) > ============================================== > If you feel your current issue is a results of installing > a Service Pack or security update, please contact > Microsoft Product Support Services: > http://support.microsoft.com > If the problem can be shown to have been caused by a > security update, then there is usually no charge for the call. > ============================================== > > "fisherwoman" <(E-Mail Removed)> wrote in message > news:7714843C-24BD-47B4-855D-(E-Mail Removed)... > > Hi Murray, > > > > Here is the original code: > > > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > > method="post"> > > <input type="hidden" name="bn" value="AMPPFPWZ.301"> > > <input type="hidden" name="cmd" value="_cart"> > > <input type="hidden" name="add" value="1"> > > <input type="hidden" name="business" > > value="(E-Mail Removed)"> > > <input type="hidden" name="item_name" value="Enamel Beach Babe"> > > <input type="hidden" name="item_number" value> > > <input type="hidden" name="amount" value="2.99"> > > <input type="hidden" name="currency_code" value="USD"> > > <input type="hidden" name="cn" value="(optional instructions)"> > > <input type="hidden" name="no_shipping" value="0"> > > <input type="hidden" name="undefined_quantity" value="0"> > > <input type="hidden" name="return" > > value="http://www.classiccitycharms.com/thankyou.htm"> > > <input type="hidden" name="cancel_return" > > value="http://www.classiccitycharms.com"> > > > > > > Here is what I get when I copy & paste the code: > > > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > > method="post"> > > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> > > <input type="hidden" name="cmd0" value="_cart"> > > <input type="hidden" name="add0" value="1"> > > <input type="hidden" name="business0" > > value="(E-Mail Removed)"> > > <input type="hidden" name="item_name0" value="Enamel Beach Babe"> > > <input type="hidden" name="item_number0" value> > > <input type="hidden" name="amount0" value="2.99"> > > <input type="hidden" name="currency_code0" value="USD"> > > <input type="hidden" name="cn0" value="(optional instructions)"> > > <input type="hidden" name="no_shipping0" value="0"> > > <input type="hidden" name="undefined_quantity0" value="0"> > > <input type="hidden" name="return0" > > value="http://www.classiccitycharms.com/thankyou.htm"> > > <input type="hidden" name="cancel_return0" > > value="http://www.classiccitycharms.com"> > > > > > > "Murray" wrote: > > > >> Can you show me an example of the code you have copied, and the resulting > >> code after you paste, please? > >> > >> -- > >> Murray > >> -------------- > >> MVP FrontPage > >> > >> > >> "fisherwoman" <(E-Mail Removed)> wrote in message > >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... > >> >I have tables set up in my website, and since upgrading to Frontpage 2003, > >> > everytime I copy the content of one cell & paste to another, it adds a > >> > zero > >> > to each line of code. I was always able to do this in FrontPage 2002, so > >> > I > >> > don't understand what is happening. > >> > > >> > Any suggestions? > >> > > >> > Thanks much! > >> > >> > >> > > > |
|
||
|
||||
|
Stefan B Rusynko
Guest
Posts: n/a
|
Been there in all versions
- to make sure your pasted form fields are unique (as required for form to function) Tools Page Options General - Make id unique on paste -- _____________________________________________ SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] "Warning - Using the F1 Key will not break anything!" (-; To find the best Newsgroup for FrontPage support see: http://www.frontpagemvps.com/FrontPa...3/Default.aspx _____________________________________________ "fisherwoman" <(E-Mail Removed)> wrote in message news:4296BEE0-F416-4AB8-97CE-(E-Mail Removed)... | The first batch of code always worked when using FrontPage 2002, and would | work when copied. Now that I have upgraded to FrontPage 2003, it doesn't. | Is this something new in 2003? | | Thanks! | | "Thomas A. Rowe" wrote: | | > Your problem is that you must assign each form a unique name in FP that appears on a page with more | > then a single form.. | > | > Example: | > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form1"> | > | > next form | > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form2"> | > | > etc. | > | > | > ============================================== | > Thomas A. Rowe (Microsoft MVP - FrontPage) | > ============================================== | > If you feel your current issue is a results of installing | > a Service Pack or security update, please contact | > Microsoft Product Support Services: | > http://support.microsoft.com | > If the problem can be shown to have been caused by a | > security update, then there is usually no charge for the call. | > ============================================== | > | > "fisherwoman" <(E-Mail Removed)> wrote in message | > news:7714843C-24BD-47B4-855D-(E-Mail Removed)... | > > Hi Murray, | > > | > > Here is the original code: | > > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" | > > method="post"> | > > <input type="hidden" name="bn" value="AMPPFPWZ.301"> | > > <input type="hidden" name="cmd" value="_cart"> | > > <input type="hidden" name="add" value="1"> | > > <input type="hidden" name="business" | > > value="(E-Mail Removed)"> | > > <input type="hidden" name="item_name" value="Enamel Beach Babe"> | > > <input type="hidden" name="item_number" value> | > > <input type="hidden" name="amount" value="2.99"> | > > <input type="hidden" name="currency_code" value="USD"> | > > <input type="hidden" name="cn" value="(optional instructions)"> | > > <input type="hidden" name="no_shipping" value="0"> | > > <input type="hidden" name="undefined_quantity" value="0"> | > > <input type="hidden" name="return" | > > value="http://www.classiccitycharms.com/thankyou.htm"> | > > <input type="hidden" name="cancel_return" | > > value="http://www.classiccitycharms.com"> | > > | > > | > > Here is what I get when I copy & paste the code: | > > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" | > > method="post"> | > > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> | > > <input type="hidden" name="cmd0" value="_cart"> | > > <input type="hidden" name="add0" value="1"> | > > <input type="hidden" name="business0" | > > value="(E-Mail Removed)"> | > > <input type="hidden" name="item_name0" value="Enamel Beach Babe"> | > > <input type="hidden" name="item_number0" value> | > > <input type="hidden" name="amount0" value="2.99"> | > > <input type="hidden" name="currency_code0" value="USD"> | > > <input type="hidden" name="cn0" value="(optional instructions)"> | > > <input type="hidden" name="no_shipping0" value="0"> | > > <input type="hidden" name="undefined_quantity0" value="0"> | > > <input type="hidden" name="return0" | > > value="http://www.classiccitycharms.com/thankyou.htm"> | > > <input type="hidden" name="cancel_return0" | > > value="http://www.classiccitycharms.com"> | > > | > > | > > "Murray" wrote: | > > | > >> Can you show me an example of the code you have copied, and the resulting | > >> code after you paste, please? | > >> | > >> -- | > >> Murray | > >> -------------- | > >> MVP FrontPage | > >> | > >> | > >> "fisherwoman" <(E-Mail Removed)> wrote in message | > >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... | > >> >I have tables set up in my website, and since upgrading to Frontpage 2003, | > >> > everytime I copy the content of one cell & paste to another, it adds a | > >> > zero | > >> > to each line of code. I was always able to do this in FrontPage 2002, so | > >> > I | > >> > don't understand what is happening. | > >> > | > >> > Any suggestions? | > >> > | > >> > Thanks much! | > >> | > >> | > >> | > | > | > |
|
||
|
||||
|
=?Utf-8?B?ZmlzaGVyd29tYW4=?=
Guest
Posts: n/a
|
That is already checked, still have the problem. As I stated earlier, I
always did that in 2002 without any problems. "Stefan B Rusynko" wrote: > Been there in all versions > - to make sure your pasted form fields are unique (as required for form to function) > Tools Page Options General > - Make id unique on paste > > -- > > _____________________________________________ > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] > "Warning - Using the F1 Key will not break anything!" (-; > To find the best Newsgroup for FrontPage support see: > http://www.frontpagemvps.com/FrontPa...3/Default.aspx > _____________________________________________ > > > "fisherwoman" <(E-Mail Removed)> wrote in message news:4296BEE0-F416-4AB8-97CE-(E-Mail Removed)... > | The first batch of code always worked when using FrontPage 2002, and would > | work when copied. Now that I have upgraded to FrontPage 2003, it doesn't. > | Is this something new in 2003? > | > | Thanks! > | > | "Thomas A. Rowe" wrote: > | > | > Your problem is that you must assign each form a unique name in FP that appears on a page with more > | > then a single form.. > | > > | > Example: > | > > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form1"> > | > > | > next form > | > > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form2"> > | > > | > etc. > | > > | > > | > ============================================== > | > Thomas A. Rowe (Microsoft MVP - FrontPage) > | > ============================================== > | > If you feel your current issue is a results of installing > | > a Service Pack or security update, please contact > | > Microsoft Product Support Services: > | > http://support.microsoft.com > | > If the problem can be shown to have been caused by a > | > security update, then there is usually no charge for the call. > | > ============================================== > | > > | > "fisherwoman" <(E-Mail Removed)> wrote in message > | > news:7714843C-24BD-47B4-855D-(E-Mail Removed)... > | > > Hi Murray, > | > > > | > > Here is the original code: > | > > > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > | > > method="post"> > | > > <input type="hidden" name="bn" value="AMPPFPWZ.301"> > | > > <input type="hidden" name="cmd" value="_cart"> > | > > <input type="hidden" name="add" value="1"> > | > > <input type="hidden" name="business" > | > > value="(E-Mail Removed)"> > | > > <input type="hidden" name="item_name" value="Enamel Beach Babe"> > | > > <input type="hidden" name="item_number" value> > | > > <input type="hidden" name="amount" value="2.99"> > | > > <input type="hidden" name="currency_code" value="USD"> > | > > <input type="hidden" name="cn" value="(optional instructions)"> > | > > <input type="hidden" name="no_shipping" value="0"> > | > > <input type="hidden" name="undefined_quantity" value="0"> > | > > <input type="hidden" name="return" > | > > value="http://www.classiccitycharms.com/thankyou.htm"> > | > > <input type="hidden" name="cancel_return" > | > > value="http://www.classiccitycharms.com"> > | > > > | > > > | > > Here is what I get when I copy & paste the code: > | > > > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" > | > > method="post"> > | > > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> > | > > <input type="hidden" name="cmd0" value="_cart"> > | > > <input type="hidden" name="add0" value="1"> > | > > <input type="hidden" name="business0" > | > > value="(E-Mail Removed)"> > | > > <input type="hidden" name="item_name0" value="Enamel Beach Babe"> > | > > <input type="hidden" name="item_number0" value> > | > > <input type="hidden" name="amount0" value="2.99"> > | > > <input type="hidden" name="currency_code0" value="USD"> > | > > <input type="hidden" name="cn0" value="(optional instructions)"> > | > > <input type="hidden" name="no_shipping0" value="0"> > | > > <input type="hidden" name="undefined_quantity0" value="0"> > | > > <input type="hidden" name="return0" > | > > value="http://www.classiccitycharms.com/thankyou.htm"> > | > > <input type="hidden" name="cancel_return0" > | > > value="http://www.classiccitycharms.com"> > | > > > | > > > | > > "Murray" wrote: > | > > > | > >> Can you show me an example of the code you have copied, and the resulting > | > >> code after you paste, please? > | > >> > | > >> -- > | > >> Murray > | > >> -------------- > | > >> MVP FrontPage > | > >> > | > >> > | > >> "fisherwoman" <(E-Mail Removed)> wrote in message > | > >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... > | > >> >I have tables set up in my website, and since upgrading to Frontpage 2003, > | > >> > everytime I copy the content of one cell & paste to another, it adds a > | > >> > zero > | > >> > to each line of code. I was always able to do this in FrontPage 2002, so > | > >> > I > | > >> > don't understand what is happening. > | > >> > > | > >> > Any suggestions? > | > >> > > | > >> > Thanks much! > | > >> > | > >> > | > >> > | > > | > > | > > > > |
|
||
|
||||
|
Stefan B Rusynko
Guest
Posts: n/a
|
Checking it creates the unique IDs (form field names)
- uncheck it if you don't want them (but your forms won't work w/ dup ids) -- _____________________________________________ SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] "Warning - Using the F1 Key will not break anything!" (-; To find the best Newsgroup for FrontPage support see: http://www.frontpagemvps.com/FrontPa...3/Default.aspx _____________________________________________ "fisherwoman" <(E-Mail Removed)> wrote in message news:A6F294EF-8483-400E-86CF-(E-Mail Removed)... | That is already checked, still have the problem. As I stated earlier, I | always did that in 2002 without any problems. | | "Stefan B Rusynko" wrote: | | > Been there in all versions | > - to make sure your pasted form fields are unique (as required for form to function) | > Tools Page Options General | > - Make id unique on paste | > | > -- | > | > _____________________________________________ | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] | > "Warning - Using the F1 Key will not break anything!" (-; | > To find the best Newsgroup for FrontPage support see: | > http://www.frontpagemvps.com/FrontPa...3/Default.aspx | > _____________________________________________ | > | > | > "fisherwoman" <(E-Mail Removed)> wrote in message news:4296BEE0-F416-4AB8-97CE-(E-Mail Removed)... | > | The first batch of code always worked when using FrontPage 2002, and would | > | work when copied. Now that I have upgraded to FrontPage 2003, it doesn't. | > | Is this something new in 2003? | > | | > | Thanks! | > | | > | "Thomas A. Rowe" wrote: | > | | > | > Your problem is that you must assign each form a unique name in FP that appears on a page with more | > | > then a single form.. | > | > | > | > Example: | > | > | > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form1"> | > | > | > | > next form | > | > | > | > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post" name="form2"> | > | > | > | > etc. | > | > | > | > | > | > ============================================== | > | > Thomas A. Rowe (Microsoft MVP - FrontPage) | > | > ============================================== | > | > If you feel your current issue is a results of installing | > | > a Service Pack or security update, please contact | > | > Microsoft Product Support Services: | > | > http://support.microsoft.com | > | > If the problem can be shown to have been caused by a | > | > security update, then there is usually no charge for the call. | > | > ============================================== | > | > | > | > "fisherwoman" <(E-Mail Removed)> wrote in message | > | > news:7714843C-24BD-47B4-855D-(E-Mail Removed)... | > | > > Hi Murray, | > | > > | > | > > Here is the original code: | > | > > | > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" | > | > > method="post"> | > | > > <input type="hidden" name="bn" value="AMPPFPWZ.301"> | > | > > <input type="hidden" name="cmd" value="_cart"> | > | > > <input type="hidden" name="add" value="1"> | > | > > <input type="hidden" name="business" | > | > > value="(E-Mail Removed)"> | > | > > <input type="hidden" name="item_name" value="Enamel Beach Babe"> | > | > > <input type="hidden" name="item_number" value> | > | > > <input type="hidden" name="amount" value="2.99"> | > | > > <input type="hidden" name="currency_code" value="USD"> | > | > > <input type="hidden" name="cn" value="(optional instructions)"> | > | > > <input type="hidden" name="no_shipping" value="0"> | > | > > <input type="hidden" name="undefined_quantity" value="0"> | > | > > <input type="hidden" name="return" | > | > > value="http://www.classiccitycharms.com/thankyou.htm"> | > | > > <input type="hidden" name="cancel_return" | > | > > value="http://www.classiccitycharms.com"> | > | > > | > | > > | > | > > Here is what I get when I copy & paste the code: | > | > > | > | > > <form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" | > | > > method="post"> | > | > > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> | > | > > <input type="hidden" name="cmd0" value="_cart"> | > | > > <input type="hidden" name="add0" value="1"> | > | > > <input type="hidden" name="business0" | > | > > value="(E-Mail Removed)"> | > | > > <input type="hidden" name="item_name0" value="Enamel Beach Babe"> | > | > > <input type="hidden" name="item_number0" value> | > | > > <input type="hidden" name="amount0" value="2.99"> | > | > > <input type="hidden" name="currency_code0" value="USD"> | > | > > <input type="hidden" name="cn0" value="(optional instructions)"> | > | > > <input type="hidden" name="no_shipping0" value="0"> | > | > > <input type="hidden" name="undefined_quantity0" value="0"> | > | > > <input type="hidden" name="return0" | > | > > value="http://www.classiccitycharms.com/thankyou.htm"> | > | > > <input type="hidden" name="cancel_return0" | > | > > value="http://www.classiccitycharms.com"> | > | > > | > | > > | > | > > "Murray" wrote: | > | > > | > | > >> Can you show me an example of the code you have copied, and the resulting | > | > >> code after you paste, please? | > | > >> | > | > >> -- | > | > >> Murray | > | > >> -------------- | > | > >> MVP FrontPage | > | > >> | > | > >> | > | > >> "fisherwoman" <(E-Mail Removed)> wrote in message | > | > >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... | > | > >> >I have tables set up in my website, and since upgrading to Frontpage 2003, | > | > >> > everytime I copy the content of one cell & paste to another, it adds a | > | > >> > zero | > | > >> > to each line of code. I was always able to do this in FrontPage 2002, so | > | > >> > I | > | > >> > don't understand what is happening. | > | > >> > | > | > >> > Any suggestions? | > | > >> > | > | > >> > Thanks much! | > | > >> | > | > >> | > | > >> | > | > | > | > | > | > | > | > | > |
|
||
|
||||
|
Murray
Guest
Posts: n/a
|
And the pages won't validate - I guess this is not as bad as them not
working, though! -- Murray -------------- MVP FrontPage "Stefan B Rusynko" <(E-Mail Removed)> wrote in message news:%23XpTW%(E-Mail Removed)... > Checking it creates the unique IDs (form field names) > - uncheck it if you don't want them > (but your forms won't work w/ dup ids) > > -- > > _____________________________________________ > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] > "Warning - Using the F1 Key will not break anything!" (-; > To find the best Newsgroup for FrontPage support see: > http://www.frontpagemvps.com/FrontPa...3/Default.aspx > _____________________________________________ > > > "fisherwoman" <(E-Mail Removed)> wrote in message > news:A6F294EF-8483-400E-86CF-(E-Mail Removed)... > | That is already checked, still have the problem. As I stated earlier, I > | always did that in 2002 without any problems. > | > | "Stefan B Rusynko" wrote: > | > | > Been there in all versions > | > - to make sure your pasted form fields are unique (as required for > form to function) > | > Tools Page Options General > | > - Make id unique on paste > | > > | > -- > | > > | > _____________________________________________ > | > SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ] > | > "Warning - Using the F1 Key will not break anything!" (-; > | > To find the best Newsgroup for FrontPage support see: > | > > http://www.frontpagemvps.com/FrontPa...3/Default.aspx > | > _____________________________________________ > | > > | > > | > "fisherwoman" <(E-Mail Removed)> wrote in message > news:4296BEE0-F416-4AB8-97CE-(E-Mail Removed)... > | > | The first batch of code always worked when using FrontPage 2002, and > would > | > | work when copied. Now that I have upgraded to FrontPage 2003, it > doesn't. > | > | Is this something new in 2003? > | > | > | > | Thanks! > | > | > | > | "Thomas A. Rowe" wrote: > | > | > | > | > Your problem is that you must assign each form a unique name in FP > that appears on a page with more > | > | > then a single form.. > | > | > > | > | > Example: > | > | > > | > | > <form action="https://www.paypal.com/cgi-bin/webscr" > target="paypal" method="post" name="form1"> > | > | > > | > | > next form > | > | > > | > | > <form action="https://www.paypal.com/cgi-bin/webscr" > target="paypal" method="post" name="form2"> > | > | > > | > | > etc. > | > | > > | > | > > | > | > ============================================== > | > | > Thomas A. Rowe (Microsoft MVP - FrontPage) > | > | > ============================================== > | > | > If you feel your current issue is a results of installing > | > | > a Service Pack or security update, please contact > | > | > Microsoft Product Support Services: > | > | > http://support.microsoft.com > | > | > If the problem can be shown to have been caused by a > | > | > security update, then there is usually no charge for the call. > | > | > ============================================== > | > | > > | > | > "fisherwoman" <(E-Mail Removed)> wrote in > message > | > | > news:7714843C-24BD-47B4-855D-(E-Mail Removed)... > | > | > > Hi Murray, > | > | > > > | > | > > Here is the original code: > | > | > > > | > | > > <form action="https://www.paypal.com/cgi-bin/webscr" > target="paypal" > | > | > > method="post"> > | > | > > <input type="hidden" name="bn" value="AMPPFPWZ.301"> > | > | > > <input type="hidden" name="cmd" value="_cart"> > | > | > > <input type="hidden" name="add" value="1"> > | > | > > <input type="hidden" name="business" > | > | > > value="(E-Mail Removed)"> > | > | > > <input type="hidden" name="item_name" value="Enamel Beach > Babe"> > | > | > > <input type="hidden" name="item_number" value> > | > | > > <input type="hidden" name="amount" value="2.99"> > | > | > > <input type="hidden" name="currency_code" value="USD"> > | > | > > <input type="hidden" name="cn" value="(optional > instructions)"> > | > | > > <input type="hidden" name="no_shipping" value="0"> > | > | > > <input type="hidden" name="undefined_quantity" value="0"> > | > | > > <input type="hidden" name="return" > | > | > > value="http://www.classiccitycharms.com/thankyou.htm"> > | > | > > <input type="hidden" name="cancel_return" > | > | > > value="http://www.classiccitycharms.com"> > | > | > > > | > | > > > | > | > > Here is what I get when I copy & paste the code: > | > | > > > | > | > > <form action="https://www.paypal.com/cgi-bin/webscr" > target="paypal" > | > | > > method="post"> > | > | > > <input type="hidden" name="bn0" value="AMPPFPWZ.301"> > | > | > > <input type="hidden" name="cmd0" value="_cart"> > | > | > > <input type="hidden" name="add0" value="1"> > | > | > > <input type="hidden" name="business0" > | > | > > value="(E-Mail Removed)"> > | > | > > <input type="hidden" name="item_name0" value="Enamel Beach > Babe"> > | > | > > <input type="hidden" name="item_number0" value> > | > | > > <input type="hidden" name="amount0" value="2.99"> > | > | > > <input type="hidden" name="currency_code0" value="USD"> > | > | > > <input type="hidden" name="cn0" value="(optional > instructions)"> > | > | > > <input type="hidden" name="no_shipping0" value="0"> > | > | > > <input type="hidden" name="undefined_quantity0" value="0"> > | > | > > <input type="hidden" name="return0" > | > | > > value="http://www.classiccitycharms.com/thankyou.htm"> > | > | > > <input type="hidden" name="cancel_return0" > | > | > > value="http://www.classiccitycharms.com"> > | > | > > > | > | > > > | > | > > "Murray" wrote: > | > | > > > | > | > >> Can you show me an example of the code you have copied, and the > resulting > | > | > >> code after you paste, please? > | > | > >> > | > | > >> -- > | > | > >> Murray > | > | > >> -------------- > | > | > >> MVP FrontPage > | > | > >> > | > | > >> > | > | > >> "fisherwoman" <(E-Mail Removed)> wrote in > message > | > | > >> news:A7EB2E00-3C3C-4C15-AB3C-(E-Mail Removed)... > | > | > >> >I have tables set up in my website, and since upgrading to > Frontpage 2003, > | > | > >> > everytime I copy the content of one cell & paste to another, > it adds a > | > | > >> > zero > | > | > >> > to each line of code. I was always able to do this in > FrontPage 2002, so > | > | > >> > I > | > | > >> > don't understand what is happening. > | > | > >> > > | > | > >> > Any suggestions? > | > | > >> > > | > | > >> > Thanks much! > | > | > >> > | > | > >> > | > | > >> > | > | > > | > | > > | > | > > | > > | > > | > > > |
|
||
|
||||
|
|
|
| |
![]() |
| Thread Tools | |
| Rate This Thread | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| RE: Code to copy and paste those cells that have data | Mayte | Microsoft Excel Programming | 0 | 6th Jan 2009 09:57 PM |
| Code to copy and paste those cells that have data | lostandcondfused | Microsoft Excel Programming | 0 | 6th Jan 2009 09:53 PM |
| Trying to copy and paste line of text into multiple cells | .Net Sports | Microsoft Excel Misc | 1 | 21st Oct 2008 02:10 AM |
| re: How copy 100's of cells from Excel to Frontpage? (All HTML code) | Jim Buyens | Microsoft Frontpage | 0 | 21st Sep 2004 09:33 PM |
| How copy 100's of cells from Excel to Frontpage? (All HTML code) | =?Utf-8?B?am9ld29vZA==?= | Microsoft Frontpage | 0 | 21st Sep 2004 09:11 PM |
Powered by vBulletin®. Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2010, Crawlability, Inc. |




