Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

Probably a dumb question but I will ask anyways lol

Hi I want to use Vs 2005 because it uses .net 2.0 and I want to use its fileUpload control on a webpage cause it makes it easier to transfer files than in .net 1.1 , however I want to use vs2003 for the rest of the pages . My question is , can I create a website made up of just that one page with the fileUpload controls and then easily do a response.redirect to a page that belongs to a website created in vs2003 ? Will that cause any problems ? I'm not going to transfer any variables between the two pages , I just need to have the functionality for a user to transfer files and then move on to another page to do something else but in a page that belongs to another project made in vs2003
[702 byte] By [Matrix.net] at [2007-11-11 10:26:02]
# 1 Re: Probably a dumb question but I will ask anyways lol
You can only use one version of .NET per application. You can create a separate application using .NET 2.0 for file uploads, then redirect your users to a different application built with .NET 1.1. I'm not sure if you'll be able to access a common file upload location from both apps.

Why not just use ASP.NET 2.0 for everything?
Phil Weber at 2007-11-11 23:11:50 >
# 2 Re: Probably a dumb question but I will ask anyways lol
Right Phil that was what my question was so I suppose thats a yes to my question. I dont wanna use 2.0 at the moment because I need to use datagrids and I'm accustomed to using and declaring them as you do in vs2003
Matrix.net at 2007-11-11 23:12:50 >
# 3 Re: Probably a dumb question but I will ask anyways lol
The ASP.NET 1.1 DataGrid works fine in 2.0, it's just not in the toolbox by default. Right click on the toolbox and choose Add/Remove Items, then add the DataGrid control.
Phil Weber at 2007-11-11 23:13:54 >