0

How I can send a XML data from a vb script to c# asp.net page ?

In my asp.net page, i have a button and its click event is in a vb script file. When I am clicking the button, it is calling the vb script sub procedure. But I want to send a XML data from that vb script sub method to asp.net page.

I don't want to do write any code in asp.net code bind and in my project, we are not using the session object.

John Saunders
  • 157,405
  • 24
  • 229
  • 388
Sunil Sha
  • 65
  • 1
  • 9

1 Answers1

1

You can make a POST request to your .aspx page.

bjnr
  • 3,215
  • 14
  • 26