rahul dagli
rahul dagli

Reputation: 1628

Do I need to know asp.net to create website using asp.net inside visual studio 2010

I think visual studio is wysiwyg like editor so do I need to learn programming?

Upvotes: 0

Views: 94

Answers (5)

James Johnson
James Johnson

Reputation: 46047

Yes, you need to learn programming, in some form or the other. If you're just looking to create some static HTML pages, you should probably look into something like Dreamweaver instead of Visual Studio. The learning curve with Dreamweaver isn't as steep.

Upvotes: 0

IrishChieftain
IrishChieftain

Reputation: 15253

You might want to take a look at Lightswitch:

http://www.microsoft.com/visualstudio/en-us/lightswitch

Upvotes: 1

Jamie Dixon
Jamie Dixon

Reputation: 53989

It depends what you mean by "website".

For anything more complex than some static pages you're going to need to learn some kind of programming.

Even with a basic site you'll want to learn CSS and HTML. The code produced by any WYSIWYG is rarely up to standard.

Upvotes: 0

Madhur Ahuja
Madhur Ahuja

Reputation: 22691

Yes, you need to if you need to add dynamic functionality to your asp.net website.

WYSIWYG if just in terms of visual, like dropping Buttons and layout of the form. For functionality, you are required to code in either C# or VB.net

Upvotes: 1

Brandon
Brandon

Reputation: 69983

Unless you just want to design a set of static pages, then yes.

Upvotes: 1

Related Questions