I need to post a string from a .NET site to a Classic ASP site which are hosted on the same server (different virtual directories).
https: //example.com/DOTNETSite/Sender.aspx
to
https: //example.com/ClassicASP/SomeFolder/Target.asp
Target.asp page has 3 ways to handle incoming data:
- Form Post
- Query String
- Headers
I cant pass my data in query string. so that option is out. I am trying the Form post method by building a form on the server side and spitting out javascript code to do a form.submit(). But this is causing a internet explorer to throw a Security Alert for the user. We want to avoid this. Please let us know what is the best way to overcome this situation. Thanks a ton.