what are the softwares that i should have in order to start learning Asp?
What software is required to learn ASP?
Collapse
X
-
bonteyTags: None
-
-
Gaurav Gambhir
if you want to use ASP as a script then all you need is IIS, any text editor and a browser, but if you want to compile your ASP code then visual studio is the best option, offcourse you would still be needing IIS and bowser.
IIS is basically used to host a website, you may need to configure IIS to understand ASP or ASP.Net. You can get plenty of help on internet for thatComment
-
Asp is never compiled, and there never was intellisense for vbscript, so if you really mean asp then I strongly disagree that visual studio will help.
If on the other hand you mean asp.net, then vwd would be a big help, both with compiling and intellisense. I've also found it does very well at publishing to my remote server.
The big confusion is asp versus asp.net. They are different technologies with a similar purpose. I don't mind that they have similar names, but I wish some people would stop referring to asp.net as "asp".
JaredComment
-
Interdev, which was part of Visual Studio 6 gives intellisense for Classic ASP. So does VS2008 SP1 and VS2010. The problem is getting intellisense to give you intellisense for your code that is in a different file than the one you are working on.Comment
-
Very true, I never recommend newbies start with asp. On the other hand, it seems every month or so I need a query analyzer while I'm working with a client who won't let me install other software, and I can now script a query analyzer from scratch in about ten minutes - nothing needs to be installed.
Btw danp129, I opened some asp files in vwd and they were all color coded. I'm not 100% sure intellisense works, but that certainly isn't the behavior I remember. It appears you were right.
JaredComment
Comment