Hi,

I was wondering if it is possible to add a product to nopcommerce from old pages.
I mean by this: pages from my old shopping site.
These are buttons with a form like code below :

what I want is, when persons are buying from the old buttons, I send the information to a page where nopcommerce can add this as a new article.

I hope someone understand my situation.


this code is on pages all over the site

<%KPr=10
KPart="R0205.1123"
KOmschr="Rayfilm 5x Tshirt folie voor witte en lichte tshirt"
call koop(Kpr,Kpart,Komschr)%>


this is the code that goes to my old shopping system
this system was with access2000 and has trouble these days, also it is asp

<%sub koop(Kpr,Kpart,Komschr)
myprice=formatnumber((Kpr/121*100),2)%>
<%=formatnumber((myprice*1.21),2)%> &euro;
    <form action="/cgi-bin/shop1.asp" method="POST">
  <input type="hidden" name="part" value="<%=Kpart%>" >
  <input type="hidden" name="description" value="<%=Komschr%>" >
  <input type="hidden" name="price" value="<%=MyEuro(myprice)%>" >
  <input type="hidden" name="units" value="1" >
  <input type="hidden" name="Quantity" value=1>
  <input src="/mall/ADDButton.gif" name="ADDButton">
</form>
<%end sub%>