I would like to post a form from a different website to my NopCommerce app.

So something like this...


<form name="aspnetForm" method="post" action="www.xxxxxxx.com/default.aspx" >
            <span>Email</span>:
            <input type="text" id="Email">

            <input id="Subscribe" type="radio" checked="checked"><label>Subscribe</label>
            <input id="Unsubscribe" type="radio" ><label>Unsubscribe</label>
  
            <input type="submit" value="Submit" />
</form>


Can this be done easily in this way?