Here's my scenario:
A desktop application posts to a specific ASP page in my web application with XML data. The web application is being re-written to ASP.Net; however, the Url for that specific page can not change (due to the desktop application).
My original idea was to simply 'forward' the requests from the classic ASP page to a new ASPX page, which would handle the request, by changing the ASP page like so:
<% Server.Transfer("MyApp/NewXmlHandler.aspx") %>
However, this doesn't work:
Active Server Pages error 'ASP 0221' Invalid @ Command directive /MyApp/NewXmlHandler.aspx, line 1
Is there a simple way I can take the posted data in the ASP page, and forward it on to another page?
Thanks!