In the process of updating a web app from ASP to ASP.NET, I want to insert one of the new files into the old app to test something – is this an offence against reason?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes but they will not share the session memory. I have an old ASP website and have replaced the main page with a asp.net page with a masterpage/content page setup. I use asp.net to send emails instead of the old asp/com components.
One work-a-round the session sharing issue is to create a bridge page that does an exchange of session data using form post or querystring. http://msdn.microsoft.com/en-us/library/aa479313.aspx
Also if you just add an asp page in your existing asp.net application it will not run. You’ll need to set up the entire app in IIS so that both the ASP and ASP.NET pages will run like it will on the server.