IIS 5.0 + ASP.NET 1.1
-
"Visual Studio.NET has detected that the specified Web Server is not running ASP.net Version 1.1. You will be unable to run ASP.NET Web Applications or services" When I added new project of ASP.NET WEB APPLICATION OR WEB SERVICES under Visual C# Projects,I have this message.What is happening? For your information, I have installed Windows XP Home Edition Sp1. I have used Windows 2000 Professional to retrieve IIS dll and inf files to install IIS component in XP Home Edition. Based on the error i get above,is it that the currently IIS version(IIS 5.0) does not support ASP.NET version 1.1? How can i solve this problem after all I have come to so close to implementation of ASP.NET using IIS in XP Home Edition. Please clarify my doubts the soonest possible..really need your help urgent. Thanks in advance, Lee
-
"Visual Studio.NET has detected that the specified Web Server is not running ASP.net Version 1.1. You will be unable to run ASP.NET Web Applications or services" When I added new project of ASP.NET WEB APPLICATION OR WEB SERVICES under Visual C# Projects,I have this message.What is happening? For your information, I have installed Windows XP Home Edition Sp1. I have used Windows 2000 Professional to retrieve IIS dll and inf files to install IIS component in XP Home Edition. Based on the error i get above,is it that the currently IIS version(IIS 5.0) does not support ASP.NET version 1.1? How can i solve this problem after all I have come to so close to implementation of ASP.NET using IIS in XP Home Edition. Please clarify my doubts the soonest possible..really need your help urgent. Thanks in advance, Lee
It sounds like the ISAPI extensions that enable ASP.NET are not properly registered. Try going into the framework directory (ie. c:\windows\Microsoft.NET\Framework\v1.1.4322) and type
aspnet_regiis -i
. That will register the ISAPI extensions. Hope that helps. :) --Jesse -
It sounds like the ISAPI extensions that enable ASP.NET are not properly registered. Try going into the framework directory (ie. c:\windows\Microsoft.NET\Framework\v1.1.4322) and type
aspnet_regiis -i
. That will register the ISAPI extensions. Hope that helps. :) --JesseThanks Jesse..it really helps me! Anyway I have another question, if I have done a C#.NET application and would like to be put on WEB using ASP.net.So should it be adding Web Application instead of Web Services right?Correct me if im wrong..if its WEB APPLICATION, how can I transform the existing C# application into a web based application .Please give me some guidance and possible samples for the above scenario if available.I would really appreciate for the aid..thanks in advance, Regards, Lee
-
Thanks Jesse..it really helps me! Anyway I have another question, if I have done a C#.NET application and would like to be put on WEB using ASP.net.So should it be adding Web Application instead of Web Services right?Correct me if im wrong..if its WEB APPLICATION, how can I transform the existing C# application into a web based application .Please give me some guidance and possible samples for the above scenario if available.I would really appreciate for the aid..thanks in advance, Regards, Lee
Hi Lee, You are correct in that you'll want to create a Web Application project. Due to the vast differences between a WinForm and Web Form, there isn't a Microsoft provided means to perform an automated conversion [that I know of]. I did try a very quick google for it, but didn't have much success. A more in-depth search may find you a third party tool that works for you. Even if you find a tool that can approximate a translation, my guess is that you'll still have to do plenty of tweaking to duplicate the exact look and feel. My advice would be to do the best you can to use a design pattern, such as model-view-controller, to encapsulate all of the non-GUI related functionality into thier own libraries. That should help to create a decent boundary and ease the transition. Best of luck. :) --Jesse