Pass .NET Control Values to PHP page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Mahill
    New Member
    • Jan 2007
    • 6

    Pass .NET Control Values to PHP page

    I have values in a .ASPX page that I would like to pass and retrieve in a .PHP page. I am using $_POST[controlname], but it is not retrieving any of the values. What am I doing wrong?

    BTW - The values I want to retrieve from the .ASPX are .NET controls. I have even written the values into conventional hidden controls (input type="hidden") but still no values are being retrieved in the .PHP page. All values are contained within a <form method=post>.
    Last edited by Mahill; Jan 18 '07, 02:55 PM. Reason: Grammatical correction
  • delusion7
    New Member
    • Sep 2006
    • 37

    #2
    I'm not totally sure, but I think you need to first put the values in $GLOBAL variables and then you can pass??

    Comment

    • kenobewan
      Recognized Expert Specialist
      • Dec 2006
      • 4871

      #3
      You could use AJAX XMLHttpRequest, here is an example:
      AJAX XMLHttpRequest

      Comment

      Working...