CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 14 of 14
  1. #1
    Join Date
    Aug 2003
    Location
    Sydney, Australia
    Posts
    1,901

    What is Preferred Editor ?

    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)

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: What is Preferred Editor ?

    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.

  3. #3
    Join Date
    Aug 2003
    Location
    Sydney, Australia
    Posts
    1,901

    Re: What is Preferred Editor ?

    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

  4. #4
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: What is Preferred Editor ?

    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.

  5. #5
    Join Date
    Aug 2003
    Location
    Sydney, Australia
    Posts
    1,901

    Re: What is Preferred Editor ?

    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 ?

  6. #6
    Join Date
    Jan 2008
    Location
    Atlanta, Georgia - United States
    Posts
    75

    Re: What is Preferred Editor ?

    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...
    Consider rating any helpful responses. I do not provide line level response for C#. Get your C# help in the C# forum!

  7. #7
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: What is Preferred Editor ?

    Quote Originally Posted by George1111
    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 ?
    It is just that 2008 is latest and will have more features like LINQ, etc.

  8. #8
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,284

    Re: What is Preferred Editor ?

    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

  9. #9
    Join Date
    May 2002
    Posts
    10,943

    Re: What is Preferred Editor ?

    Agree!

    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.
    If the post was helpful...Rate it! Remember to use [code] or [php] tags.

  10. #10
    Join Date
    Aug 2003
    Location
    Sydney, Australia
    Posts
    1,901

    Re: What is Preferred Editor ?

    Thanks guys

    Can I install Visual Studio 2008 Express and still keep my VS 2005 running ?

  11. #11
    Join Date
    Jan 2008
    Location
    Atlanta, Georgia - United States
    Posts
    75

    Re: What is Preferred Editor ?

    Yes. It will have no effect.
    Consider rating any helpful responses. I do not provide line level response for C#. Get your C# help in the C# forum!

  12. #12
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: What is Preferred Editor ?

    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
    Last edited by Shuja Ali; March 11th, 2008 at 07:16 PM. Reason: Changed 3005 to 2005 :)

  13. #13
    Join Date
    Aug 2003
    Location
    Sydney, Australia
    Posts
    1,901

    Re: What is Preferred Editor ?

    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

  14. #14
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: What is Preferred Editor ?

    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured