473,387 Members | 1,904 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Preferred IDE

I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.
Nov 18 '05 #1
13 1169
studio is the way to go. webmatrix is for those on a budget.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Rusty Owens" <ru*********@hotmail.com> wrote in message
news:48**************************@posting.google.c om...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #2
Rusty,

Although Alvin recommended Visual Studio, here's my two cents. I've found
Visual Studio to be great for everything but webforms. It's HTML handling is
terrible and you're forced to use the Inheritance code behind model (which,
I've thought was a bad choice from day one, and am thrilled to see it no
longer required in VS2005). I use Dreamweaver, and the "Code-Aside" model
(<script runat=server src=myPage.aspx.vb>). You'll find VS.NET easier to
use, but I think you'll have a much better end product by going wih
something that handles HTML much better and doesn't use the Inheritance
code-behind.

-- Alex Papadimoulis

,
"Rusty Owens" <ru*********@hotmail.com> wrote in message
news:48**************************@posting.google.c om...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #3
WebMatrix is free, Visual Studio.NET is definitely not free.
You get what you pay for.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Rusty Owens" <ru*********@hotmail.com> wrote in message
news:48**************************@posting.google.c om...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #4
> and you're forced to use the Inheritance code behind model (which,
I've thought was a bad choice from day one, and am thrilled to see it no
longer required in VS2005).
What's your source for this?

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Alex Papadimoulis" <al***@papadimoulis.com> wrote in message
news:e%****************@TK2MSFTNGP11.phx.gbl... Rusty,

Although Alvin recommended Visual Studio, here's my two cents. I've found
Visual Studio to be great for everything but webforms. It's HTML handling
is
terrible and you're forced to use the Inheritance code behind model
(which,
I've thought was a bad choice from day one, and am thrilled to see it no
longer required in VS2005). I use Dreamweaver, and the "Code-Aside" model
(<script runat=server src=myPage.aspx.vb>). You'll find VS.NET easier to
use, but I think you'll have a much better end product by going wih
something that handles HTML much better and doesn't use the Inheritance
code-behind.

-- Alex Papadimoulis

,
"Rusty Owens" <ru*********@hotmail.com> wrote in message
news:48**************************@posting.google.c om...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.


Nov 18 '05 #5
Code behind is no longer required; VS2005 has good support for using a
single file for your HTML source and server code.
Inheritance is still used in VS2005, although much of the boilerplate code
is now hidden behind the scenes.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
and you're forced to use the Inheritance code behind model (which,
I've thought was a bad choice from day one, and am thrilled to see it no
longer required in VS2005).


What's your source for this?

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Alex Papadimoulis" <al***@papadimoulis.com> wrote in message
news:e%****************@TK2MSFTNGP11.phx.gbl...
Rusty,

Although Alvin recommended Visual Studio, here's my two cents. I've found Visual Studio to be great for everything but webforms. It's HTML handling is
terrible and you're forced to use the Inheritance code behind model
(which,
I've thought was a bad choice from day one, and am thrilled to see it no
longer required in VS2005). I use Dreamweaver, and the "Code-Aside" model (<script runat=server src=myPage.aspx.vb>). You'll find VS.NET easier to
use, but I think you'll have a much better end product by going wih
something that handles HTML much better and doesn't use the Inheritance
code-behind.

-- Alex Papadimoulis

,
"Rusty Owens" <ru*********@hotmail.com> wrote in message
news:48**************************@posting.google.c om...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.



Nov 18 '05 #6
how is that different from today when everything can fit into the aspx page.
I'm missing something i'm sure

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:OV**************@TK2MSFTNGP12.phx.gbl...
Code behind is no longer required; VS2005 has good support for using a
single file for your HTML source and server code.
Inheritance is still used in VS2005, although much of the boilerplate code
is now hidden behind the scenes.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
> and you're forced to use the Inheritance code behind model (which,
> I've thought was a bad choice from day one, and am thrilled to see it
> no
> longer required in VS2005).


What's your source for this?

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Alex Papadimoulis" <al***@papadimoulis.com> wrote in message
news:e%****************@TK2MSFTNGP11.phx.gbl...
> Rusty,
>
> Although Alvin recommended Visual Studio, here's my two cents. I've found > Visual Studio to be great for everything but webforms. It's HTML handling > is
> terrible and you're forced to use the Inheritance code behind model
> (which,
> I've thought was a bad choice from day one, and am thrilled to see it
> no
> longer required in VS2005). I use Dreamweaver, and the "Code-Aside" model > (<script runat=server src=myPage.aspx.vb>). You'll find VS.NET easier
> to
> use, but I think you'll have a much better end product by going wih
> something that handles HTML much better and doesn't use the Inheritance
> code-behind.
>
> -- Alex Papadimoulis
>
> ,
> "Rusty Owens" <ru*********@hotmail.com> wrote in message
> news:48**************************@posting.google.c om...
>> I am new to .NET. I have been doing web development using ColdFusion
>> for 5 years. I am trying to determine if there is a standard IDE for
>> asp.net. I have downloaded Webmatrix from Microsoft but I am
>> wondering if it is more of a project than an accepted standard since
>> they also have Visual Studio.
>
>



Nov 18 '05 #7
Currently VS.NET pretty much forces you to use a code behind. If you want
to do single page, it's not easy or supported well like it is in WebMatrix.
In VS.NET 2005 this is fully supported with full intellisense.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:O3**************@TK2MSFTNGP09.phx.gbl...
how is that different from today when everything can fit into the aspx page. I'm missing something i'm sure

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Steve C. Orr [MVP, MCSD]" <St***@Orr.net> wrote in message
news:OV**************@TK2MSFTNGP12.phx.gbl...
Code behind is no longer required; VS2005 has good support for using a
single file for your HTML source and server code.
Inheritance is still used in VS2005, although much of the boilerplate code is now hidden behind the scenes.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message
news:eM**************@TK2MSFTNGP12.phx.gbl...
> and you're forced to use the Inheritance code behind model (which,
> I've thought was a bad choice from day one, and am thrilled to see it
> no
> longer required in VS2005).

What's your source for this?

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Alex Papadimoulis" <al***@papadimoulis.com> wrote in message
news:e%****************@TK2MSFTNGP11.phx.gbl...
> Rusty,
>
> Although Alvin recommended Visual Studio, here's my two cents. I've

found
> Visual Studio to be great for everything but webforms. It's HTML

handling
> is
> terrible and you're forced to use the Inheritance code behind model
> (which,
> I've thought was a bad choice from day one, and am thrilled to see it
> no
> longer required in VS2005). I use Dreamweaver, and the "Code-Aside"

model
> (<script runat=server src=myPage.aspx.vb>). You'll find VS.NET easier
> to
> use, but I think you'll have a much better end product by going wih
> something that handles HTML much better and doesn't use the Inheritance > code-behind.
>
> -- Alex Papadimoulis
>
> ,
> "Rusty Owens" <ru*********@hotmail.com> wrote in message
> news:48**************************@posting.google.c om...
>> I am new to .NET. I have been doing web development using ColdFusion >> for 5 years. I am trying to determine if there is a standard IDE for >> asp.net. I have downloaded Webmatrix from Microsoft but I am
>> wondering if it is more of a project than an accepted standard since
>> they also have Visual Studio.
>
>



Nov 18 '05 #8
1. Code behind has never been required.
2. Inheritance is not used for ASP.NET classes anymore, rather partial
classes, which introduces the idea of a code-beside model.

--
Matt Berther
http://www.mattberther.com
Steve C. Orr [MVP, MCSD] wrote:
Code behind is no longer required; VS2005 has good support for using a
single file for your HTML source and server code.
Inheritance is still used in VS2005, although much of the boilerplate code
is now hidden behind the scenes.

Nov 18 '05 #9
You're correct that code behind has never been required, but it is difficult
to do the single file method in VS.NET.

I believe you're wrong about inheritance not being needed in ASP.NET classes
anymore. Underneath it all, your page is still inheriting from the Page
class.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://Steve.Orr.net
"Matt Berther" <mb******@hotmail.com> wrote in message
news:OD**************@tk2msftngp13.phx.gbl...
1. Code behind has never been required.
2. Inheritance is not used for ASP.NET classes anymore, rather partial
classes, which introduces the idea of a code-beside model.

--
Matt Berther
http://www.mattberther.com
Steve C. Orr [MVP, MCSD] wrote:
Code behind is no longer required; VS2005 has good support for using a
single file for your HTML source and server code.
Inheritance is still used in VS2005, although much of the boilerplate code is now hidden behind the scenes.

Nov 18 '05 #10
Yes, you are right that it still inherits from Page. I thought your
statement was directed at the fact that your .ASPX is a subclass of your
code-behind class.

--
Matt Berther
http://www.mattberther.com

Steve C. Orr [MVP, MCSD] wrote:
You're correct that code behind has never been required, but it is difficult
to do the single file method in VS.NET.

I believe you're wrong about inheritance not being needed in ASP.NET classes
anymore. Underneath it all, your page is still inheriting from the Page
class.

Nov 18 '05 #11
Quite happy using Notepad. Its not fast, and its not particularly clever (if at all)

I do have VS, but dont use it

ru*********@hotmail.com (Rusty Owens) wrote in message news:<48**************************@posting.google. com>...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #12
why don't you use visual studio? Don't get defensive. This is a genuine
question. I'd like to know what are the main reasons for sticking with
notepad over the benefits of studio.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Samuel Hon" <no*****@samuelhon.co.uk> wrote in message
news:c8**************************@posting.google.c om...
Quite happy using Notepad. Its not fast, and its not particularly clever
(if at all)

I do have VS, but dont use it

ru*********@hotmail.com (Rusty Owens) wrote in message
news:<48**************************@posting.google. com>...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #13
Hi Alvin

I started using VS when I was learning .NET and wrote a few initial
web projects in it. I should mention that I normally use .NET for web
apps and VB6 for desktop apps.

The main reason I use Notepad is because I'm not doing project based
apps. I've built an assembly which does most of the work. Most of the
webpages are relatively simple but the few which req a built more
substance have a simple codebehind page (using src).

The main thing I miss about VS is the Intellitype. Its a pain having
to find which assembly a class belongs to eg PagedDataSource.

Sam

"Alvin Bruney [MVP]" <vapor at steaming post office> wrote in message news:<Op**************@tk2msftngp13.phx.gbl>...
why don't you use visual studio? Don't get defensive. This is a genuine
question. I'd like to know what are the main reasons for sticking with
notepad over the benefits of studio.

--
Regards,
Alvin Bruney
[ASP.NET MVP http://mvp.support.microsoft.com/default.aspx]
Got tidbits? Get it here... http://tinyurl.com/27cok
"Samuel Hon" <no*****@samuelhon.co.uk> wrote in message
news:c8**************************@posting.google.c om...
Quite happy using Notepad. Its not fast, and its not particularly clever
(if at all)

I do have VS, but dont use it

ru*********@hotmail.com (Rusty Owens) wrote in message
news:<48**************************@posting.google. com>...
I am new to .NET. I have been doing web development using ColdFusion
for 5 years. I am trying to determine if there is a standard IDE for
asp.net. I have downloaded Webmatrix from Microsoft but I am
wondering if it is more of a project than an accepted standard since
they also have Visual Studio.

Nov 18 '05 #14

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Dave Benjamin | last post by:
I just noticed that the "new" module is deprecated in Python 2.3. Since the old way of adding a method to a particular instance (not its class) was to use new.instancemethod, I am guessing that we...
22
by: Jane Withnolastname | last post by:
I have been using the charset windows-1252 for a while, but it was pointed out to someone else in this group recently that it's a Microsoft creation (I'm sure I'm getting my facts wrong or skewed)...
41
by: Mountain Bikn' Guy | last post by:
What is the current preferred way to save user preferences in dotnet? Is the registry the right place to do this? Can anyone recommend a good article (or book) for this topic? Thanks.
2
by: godyuyu | last post by:
i need change the system preferred audio device in my vc++ project ,but i can't find the resolution.I just want to know the method.
5
by: Rod | last post by:
I've written 2 ASP.NET applications (I've worked on one with a team and another by myself). In my ASP.NET pages, when saving data to a backend database I've done it by using the click event of a...
7
by: stabbert | last post by:
I am trying to setup a preferred export format for users when exporting data. Are there any pros/cons to using one format over another or is it really just personal preference? Spencer
2
by: OzzyC | last post by:
I have creating a web page at http://www.interface-web.co.uk/atyc/cssproblem.htm which is supposed to use a preferred stylesheet to style the page on the first visit and then allows the user to...
4
by: Bill Jackson | last post by:
Is there a preferred random library? scipy.random random Besides scipy's library returning ndarrays, is there any other advantage/disadvantage?
3
by: moondaddy | last post by:
What's the preferred (best) way to start a website project in VS 2005? I know of 2 ways and each creates a site differently and has different behavior. Open VS 2005 1) from the start page...
1
by: Rathman | last post by:
Hi, I'm trying to create a general form with multiple subforms. The subforms contain discrete pieces of information such as Customer, Work Order, etc, while the main form is simply a front-end...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.