Switch Between wordpress website and asp.net website

I am new to word press and asp.net web hosting.So I have a issue below.

I have a website which has mainly front end in word press and back end in asp.net. There are some page in the front-end that will be in asp.net like sign in and Sign-Up
Now my issue is how can I switch from a word press website to asp.net or visa-versa website with same domain name.

Read More

Please suggest any Idea how can I proceed.

Related posts

Leave a Reply

1 comment

  1. Hosting web applications require web servers. Since in your case IIS for .NET and Apache for wordpress/php. You will not be able to run IIS and Apache parallelly by listening to same PORT.

    So one possible solution could be,

    1. To have sign-in and sign-up page on wordpress (either in the form on html or PHP).
    2. Make ajax calls to .NET to authenticate or register the user.

    Thus, they run as two different applications and end user will not know any difference in URL or anything.

    Hope this helps.