PHP to ASP.NET
-
I am very new to ASP.NET ( first day ) and I have a question. I have a php page with a short script that writes anything posted to it into a file (somefile.xml). The data coming in is raw data. Off the top of my head I believe the PHP type is HTTP_RAW_DATA. How do I accomplish this with asp.net? I don't even know what to search for.
-
I am very new to ASP.NET ( first day ) and I have a question. I have a php page with a short script that writes anything posted to it into a file (somefile.xml). The data coming in is raw data. Off the top of my head I believe the PHP type is HTTP_RAW_DATA. How do I accomplish this with asp.net? I don't even know what to search for.
-
Hi there, You can look into the members[^]of the Request object to read data posted to the web page like Params, Form, QueryString .... Also, you might want to look at the PHP to ASP.NET Migration Guide[^]
Thanks I'll have a look