User-1578974752 posted
I have a vb.net project and c#.net project . How can I pass a session variable to c#.net project upon button click of a vb.net project. I am publishing c#.net project and accessing through button click of vb.net project.
using below code in the button click
Dim MO As String = Session("zzz")
Response.Redirect(String.Format("http://11.11.1.1/Order/add.aspx?{0}", MO))
Thanks