Add PHP in ASP.NET [closed]

5

I'm creating a website in ASP.NET and the company wants me to keep the client area of the old site that was made in PHP.

The client area consists of a login, where after being authenticated, the client can fill out a form with his / her problem, and once it is completed, this form will be sent to a platform where the technicians consult all the clients' / p>

All this is already done in PHP and MySql. You only have to apply to the site being created in ASP.NET.

What will be the best way to do this?

I've already thought about the time when the company put the old site offline, leave the part of the customer area online and in this site in ASP.NET create only the part of the login and if the login is successful, redirects to the page old but I do not know to what extent this is possible or safe.

    
asked by anonymous 06.05.2015 / 15:37

2 answers

1

I have developed a platform in ASP + PHP , with independent servers ( WINDOWS and LINUX ), integration between two languages can occur in some ways:

  • You can create keys to ensure integration security, obviously encrypt them, and pass data to GET (with keys as well);
  • Use a front-end page and ASP.NET pass data through AJAX to a page POST ;
  • Use the database itself to integrate the two languages, this is the safest way.

There is not much you can do to integrate two languages, but a more reliable and ideal solution would be to use the database itself to do this.

    
24.08.2015 / 14:13
0

Because you do not leave the authentication and client area in PHP, you develop everything else in ASP.net, and you only have to ensure that the user is authenticated when accessing pages in ASP.net. Correct?

You create an authentication mechanism in ASP.net, and when you enter the application in PHP the user is automatically registered also in the application made in ASP.net.

    
11.06.2015 / 15:14