With ASP.Net we use VS2005
What is the best editor to use with ASP ? (NOT DOT NET)
Thanks
(I am just starting a new project and learning ASP at the same time and have never done anything in ASP before)
Printable View
With ASP.Net we use VS2005
What is the best editor to use with ASP ? (NOT DOT NET)
Thanks
(I am just starting a new project and learning ASP at the same time and have never done anything in ASP before)
Classic ASP as it is known as does not need a designer typically. You can use Visual Studio 2003 or else if you don't have one, just use Notepad. :)
But why use Classic ASP, when you can utilize so many good things in ASP.NET.
I would love to use ASP.Net but am having trouble finding a free/low cost application generator for VS2005
All those that I have found have been for VS2003 and never convert projects to VS2005 successfully
I am now considering buying Ironspeed (www.ironspeed.com) which looks great for getting a head start in generating ASP pages
I don't want to make a web site - rather an application which will run over the web
Have you any ideas on what tool would be best to use ?
ASP.Net sounds like the best fit, but I just keep hitting brick walls with all the rapid developers I have been trying to assess
It makes more sense to go with ASP.Net as I am starting to learn ASP from scratch - Plain ASP just looks easier to understand
Appreciate your help, thanks
Have you checked Visual web Developer Express? Visual Web Developer Express 2008 is free and can be downloaded from MSDN. It contains almost all the functionality that you would need to develop a Web Application.
I have Visual Studio 2005 (which incudes ASP.net of course)
How is the difference between creating a website in VS2005 compared to VS Express 2008 ?
Unless your programming in .net 3.5, you don't need VSD08. If you want an editor that will recognize tags in ASP, try Notepad++. Notepad++ is the superior choice for many languages...
It is just that 2008 is latest and will have more features like LINQ, etc.Quote:
Originally Posted by George1111
I'm with Shuja on this one. Use the Visual Web Developer Express. IMHO, try the 2005 one, then, steadily learn the 2008 one, that's what I'd do. fact of the matter is, use the Visual Web Developer Express - really, a great tool :thumb:
Agree! :thumb:
I know this has been covered well, but to add to these thoughts...Visual Studio Express elements are geared towards simplicity with efficiency. Unless you are making this for a large corporation, you will probably not require any tools from a non-Express edition.
Thanks guys
Can I install Visual Studio 2008 Express and still keep my VS 2005 running ?
Yes. It will have no effect.
Yes you can. I have VS 2003, 2005 and 2008 installed on my system and everything works perfectly.
Although once you get VS 2008, you wouldn't need VS 2005 because with VS 2008 you can develop applications on framework 2.0, 3.0 and 3.5.
Edit
I actually wrote 3005 instead of 2005. Seems like my time machine has finally started working :D:p
Say I have developed a data aware application using VB.Net 2005, using traditional "Select * from Table Using ....." type coding, with normal VB.Net Forms and I now want to make the application run as a web application, what do I do ?
ie, Can a VB.Net 2005 application be "converted" to an ASP.net application retaining all its functionality (and forms functionality) ?
Thanks
If your Winforms application is designed properly then I woudl say you just have to change the Presentation Layer, however if your database logic is written within the presentation layer then the amount of work that you will have to do increases.
Ideally you should modify your Winforms application to abstract the Data Access Layer and then use that data access layer in you ASP.NET application.