Paypal button generator

My web site requires a ton of paypal buttons and drop down option lists. Doing this through the online button maker is just too long and tedious, so I decided to make my own. My first stumbling block is the loading of properties with HTML. If I try to load the following line into a string variable;

<form name="_xclick" action="https://www.paypal.com/au/cgi-bin/webscr" method="post"> it naturally produces a compile error because of the multiple use of double quotes("). How would you load a string var with the HLML above

[code]dim HT as string

HT=
[/code]
the above will not work

You need to double quote

HT = "<form name=""_xclick"" action=""https://www.paypal.com/au/cgi-bin/webscr"" method=""post"">"

Thanks Wayne, no wonder you guys won the Rugby, but let see how well you go in the cricket.