Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Switch from ASP

New Here ,
Jun 22, 2009 Jun 22, 2009

I have been designing pages and learning in dreamweaver for a year or so using asp vbscript. I'm assuming this is an outdated technology as I have run into issues with "classic" asp when design pages on IIS7. I guess I should learn a new technology but which one is best? I prefer to create sites connected to data, typically in access.

TOPICS
Server side applications
662
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
Jun 22, 2009 Jun 22, 2009

PHP?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jun 22, 2009 Jun 22, 2009

RodEich wrote:

I guess I should learn a new technology but which one is best? I prefer to create sites connected to data, typically in access.

If you're going to learn a new technology, now is also the time to dump Access as your database. Access was designed as a small office database system. It is not suitable for deployment on the web, except for very small amounts of data on sites that don't get a great deal of traffic. The files created by Access are bloated in comparison with what can be stored by a real database system, such as SQL Server or MySQL. Access also has a nasty tendency to lock up.

Your basic choices are:

  • ASP.NET - familiar because you have an ASP background, but not supported any more by Dreamweaver, and with a much steeper learning curve.
  • PHP - well supported by Dreamweaver, popular, and widely available on hosting plans.
  • ColdFusion - supported by Dreamweaver, easy to use, but with a much smaller user base, and less widely available.

My choice would be PHP, but a lot of people like ColdFusion.

The choice of database depends on the server-side technology you use. With PHP, it needs to be MySQL if you want to use Dreamweaver server behaviors.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 22, 2009 Jun 22, 2009
LATEST

Thanks, I appreciate your response. I think I will look into the PHP direction as I am familiar with dreamweaver at this point and I don''t really have programming experience but I do have dreamweaver experience.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines