ASP.NET 1.0 and 1.1 BasicsASP.NET discussion for users new to coding in ASP.NET 1.0 or 1.1. NOT for the older "classic" ASP 3 or the newer ASP.NET 2.0.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the ASP.NET 1.0 and 1.1 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I would like to know how you can pass a session variable from an ASP.Net page coded in C# to another ASP.Net page coded in VB.Net. Is this possible without having to write out a temporary file? Answers are much appreciated. Thanks.
Oh just another curiosity...how about if they don't share the same application scope? Will it still be possible and as simple as that? Thanks for being patient.
Multiple applications do not share session data. If you need to share data you'll need to pass it by a querystring or thru some persistant data store like a database. Or perhaps you need to merge applications if they are related.