hey there.. i keep on searching the web for articles regarding running a php file inside a .aspx code. the only thing i can see is calling a .aspx file on a php code.. but is it possible, calling a php file inside a .aspx code? thanks for all the help!
It depends what you are trying to achieve but in short yes! Where is this PHP file located on a remote server? You could potentially use the execute method or you may have to do a little more legwork such as using System.Net.WebClient and the openread method.
well like I said it really depends on wat you are doing with it but here is a simplistic example that gets a url and writes out the response Dim web As System.Net.WebClient = New System.Net.WebClient Dim sr As System.IO.StreamReader sr = New System.IO.StreamReader(web.OpenRead("http://www.dbnetsolutions.co.uk")) Response.Write(sr.ReadToEnd) Code (markup):