Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am making software using vb.net and one of the page i want to show with the help of php. When i clicked button in vb.net, it directly show to online with the help of php code. how can it possible?

What I have tried:

still i can't find perfect answer for this.
Posted
Updated 20-Mar-16 21:30pm
Comments
Sinisa Hajnal 21-Mar-16 3:30am    
That is maybe because you're trying to do strange things with session which it wasn't made for. What data are you trying to send to PHP? Send it via URL (get) or in the page (POST). Send it as a cookie. Store the value into the database and retrieve it on PHP page. Plenty of ways, but using session isn't one of them.
Afzaal Ahmad Zeeshan 21-Mar-16 4:21am    
Send it via URL. :thumbsup:

1 solution

I don't think there is any direct way to transfer session variable from one application to other, as session variable is created with browser object only. even both tabs from same browser has different session objects.
I think database may be the good way to share between two application. OR The basic idea is that you store SESSION parameters in a database table and different apps check if those SESSION values exist.
Below link may be useful for you
How to Share Session State Between Classic ASP and ASP.NET[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900