ASP.Net »

[31 Aug 2009 | 1 Comments]

You can't have HTML form tags inside aspx form tags. The problem is that ASP.NET pages are forms themselves, surrounded by a single tag that automatically posts back to itself. Therefore, you cannot embed an HTML form inside this server form.
Shown below is typical code for a PayPal "BuyNow" button. [More]