Где запустить с ASP.net в C# и DreamWeaver?

Я нашел ответ, мне просто нужно использовать базовый тип valuator.doclib.indicator.activeWorkflows

7
задан Mehrdad Afshari 23 April 2009 в 22:16
поделиться

7 ответов

Я не верю. Dreamweaver не является хорошим инструментом для разработки кода . Это то, что вам нужно в ASP.NET. Вам понадобится отладка. Вам понравится IntelliSense, и вы всегда можете время от времени открывать отдельные файлы в Dreamweaver (в любом случае, я сомневаюсь, что вы это сделаете).

Возьмите Visual Studio Express 2013 для Интернета (бесплатно) и наслаждайтесь. Это приложение для Windows, как и многие другие приложения для Windows! Вам не нужно профессиональное обучение, чтобы использовать его.

16
ответ дан 6 December 2019 в 08:17
поделиться

I think you would be very disappointed with the ASP.NET support in Dreamweaver. You would be MUCH better off getting yourself a copy of Visual Studio / Web Developer (express editions are free) and doing your development there.

That said, there's no reason why you can't create your HTML and CSS in Dreamweaver, then bring those files into Visual Studio to actually put in the code. This is kind of a one-time deal though since usually once you've started splitting up your HTML into master pages and user controls/partial views, it's pretty difficult to go back and edit them again in Dreamweaver.

1
ответ дан 6 December 2019 в 08:17
поделиться

As someone who formerly coded PHP in Dreamweaver, I would strongly suggest the use of the Visual Studio IDE for C# ASP.NET applications. The benefits are numerous:

  • Intellisense - where any object, property, method, etc. that you create will automatically appear in an auto-complete box, drastically reducing syntax errors
  • Project templates - starting a web application from scratch is going to be very very tricky if you have to do it all via source code
  • Debugging - errors can be caught and debugged directly in the source code
  • Add-ins - my favorite being the Configuration Section Designer

I'm sure there are even more reasons, these are just the biggest ones.

4
ответ дан 6 December 2019 в 08:17
поделиться

Visual Studio 2008, вероятно, будет лучше. Иногда может быть полезна не только IntelliSense, но и отладка в JavaScript (не знаю, включена ли она в версию Express).

1
ответ дан 6 December 2019 в 08:17
поделиться

If you feel comfortable using Dreamweaver for design, you can still continue to use it, but I would strongly recommend you familiarise yourself with Visual Studio Express however (it's free). Trying to learn .NET and C# using a text editor or an application like dreamweaver is feasible, but you would be making the learning process unnecessarily difficult. Visual Studio gives you syntax highlighting, intellisense, debugging, and many other features that you just aren't going to get in another IDE targeted at web design. VS is really very strongly coupled to .NET development.

I started my career as a web designer many years ago using Dreamweaver, and have gradually made the transition to software developer. Leaving tools like Dreamweaver behind has actually given me a lot more freedom in terms of working as a designer, and I find that I don't in fact need any tools for markup and css other than a text editor. You may find that abandoning a design tool like dreamweaver actually makes you a better designer; and just as well - the "design" tools in Visual Studio are absolutely useless :)

If you do decide to continue using Dreamweaver for markup, be aware that things may render differently in Visual Studio. Ignore the Visual Studio design pane entirely and just check your design in the various browsers (I'm sure you already do this).

1
ответ дан 6 December 2019 в 08:17
поделиться

Да, если исходить из точно такой же ситуации, я могу вам сказать, что теперь это очень поможет отойти от Dreamweaver для вашей работы .net. IntelliSense для C # не очень хорош в Dreamweaver. В Dreamweaver вы найдете функции, которые вам очень не нравятся, в частности, завершение кода на стороне HTML намного лучше в Dreamweaver, чем в VS.

0
ответ дан 6 December 2019 в 08:17
поделиться

Еще один голос за Visual Studio с добавлением, что вам не нужно отказываться от Dreamweaver. Вы можете использовать Dreamweaver для создания базового макета и дизайна интерфейса. Затем используйте Visual Studio, чтобы реализовать реализацию этого проекта.

Вы найдете создание ASP.Net без целенаправленной IDE болезненным.

0
ответ дан 6 December 2019 в 08:17
поделиться
Другие вопросы по тегам:

Похожие вопросы: