473,386 Members | 1,819 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,386 software developers and data experts.

ASP.NET Web Matrix or VS.NET?

Hi All!

I'll be doing my first ASP.NET web project and I would like you to recommand
me whether I should use ASP.NET Web Matrix or Visual Studio.NET?

My ASP.NET application will have following features
- Requires connnection to DB (So I probably need to use ADO.NET for it?)
- Requires Web Controls (such as graphs)
- Requires to code in VB.NET or C# (as code behind)

Can ASP.NET Web Matrix fufill all those? Or do I need to get VS.NET for it?

Thanks all in advance!

Don
Nov 18 '05 #1
4 1192
I suggest vs.net.
- Requires connnection to DB (So I probably need to use ADO.NET for it?) A:It doesn't matter. - Requires Web Controls (such as graphs) A:webmatrix can do the same thing.And I thought webmatrix hava a better way to display the webcontrol(*.ascx) than vs.net - Requires to code in VB.NET or C# (as code behind) --You'd better use vs.net.

Webmatrix is good too.But I think it not good for a beginner or complex applications.

"Don Wash" wrote:
Hi All!

I'll be doing my first ASP.NET web project and I would like you to recommand
me whether I should use ASP.NET Web Matrix or Visual Studio.NET?

My ASP.NET application will have following features
- Requires connnection to DB (So I probably need to use ADO.NET for it?)
- Requires Web Controls (such as graphs)
- Requires to code in VB.NET or C# (as code behind)

Can ASP.NET Web Matrix fufill all those? Or do I need to get VS.NET for it?

Thanks all in advance!

Don

Nov 18 '05 #2
Thanks!!

What about SharpDevelop? How does it match up with VS.NET?

Don

"jianglinchun" <ji**********@discussions.microsoft.com> wrote in message
news:1A**********************************@microsof t.com...
I suggest vs.net.
- Requires connnection to DB (So I probably need to use ADO.NET for it?) A:It doesn't matter.
- Requires Web Controls (such as graphs)

A:webmatrix can do the same thing.And I thought webmatrix hava a better

way to display the webcontrol(*.ascx) than vs.net
- Requires to code in VB.NET or C# (as code behind)

--You'd better use vs.net.

Webmatrix is good too.But I think it not good for a beginner or complex

applications.
"Don Wash" wrote:
Hi All!

I'll be doing my first ASP.NET web project and I would like you to recommand me whether I should use ASP.NET Web Matrix or Visual Studio.NET?

My ASP.NET application will have following features
- Requires connnection to DB (So I probably need to use ADO.NET for it?)
- Requires Web Controls (such as graphs)
- Requires to code in VB.NET or C# (as code behind)

Can ASP.NET Web Matrix fufill all those? Or do I need to get VS.NET for it?
Thanks all in advance!

Don

Nov 18 '05 #3
"Don Wash" <do*@wash.com> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
Hi All!

I'll be doing my first ASP.NET web project and I would like you to recommand me whether I should use ASP.NET Web Matrix or Visual Studio.NET?

My ASP.NET application will have following features
- Requires connnection to DB (So I probably need to use ADO.NET for it?)
- Requires Web Controls (such as graphs)
- Requires to code in VB.NET or C# (as code behind)

Can ASP.NET Web Matrix fufill all those? Or do I need to get VS.NET for it?
Thanks all in advance!

Don


You could use both. However, keep in mind that WebMatrix has the following
limitations:
- code written in WebMatrix will not be compiled into a separate DLL
(codebehind). Thus resulting files that are combinations of code (VB.NET,
C#, ...) and HTML.
- WebMatrix still has no code completion. When you're not used to working in
ASP.NET/C#-VB.NET you will spend a lot of time in debugging and searching.

Wim
Nov 18 '05 #4
Web Matrix is free. Visual Studio.Net is expensive. Microsoft manufactures
both products. Which one do you think is the best?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

"Don Wash" <do*@wash.com> wrote in message
news:On**************@TK2MSFTNGP09.phx.gbl...
Hi All!

I'll be doing my first ASP.NET web project and I would like you to recommand me whether I should use ASP.NET Web Matrix or Visual Studio.NET?

My ASP.NET application will have following features
- Requires connnection to DB (So I probably need to use ADO.NET for it?)
- Requires Web Controls (such as graphs)
- Requires to code in VB.NET or C# (as code behind)

Can ASP.NET Web Matrix fufill all those? Or do I need to get VS.NET for it?
Thanks all in advance!

Don

Nov 18 '05 #5

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

Similar topics

6
by: Ben Ingram | last post by:
Hi all, I am writing a template matrix class in which the template parameters are the number of rows and number of columns. There are a number of reasons why this is an appropriate tradeoff for...
5
by: Jason | last post by:
Hello. I am trying to learn how operator overloading works so I wrote a simple class to help me practice. I understand the basic opertoar overload like + - / *, but when I try to overload more...
6
by: memocan | last post by:
#include <iostream> using namespace std; int x; //global variable matrix int main() { x= new float ; //initialize the size now }
14
by: amitnanda | last post by:
Hi Guys, I have a matrix multiplication program in C that multiplies two matrices. When their size is 3*3 or 800*800, the program runs fine. But above that size, I get a "segmentation fault"....
20
by: Frank-O | last post by:
Hi , Recently I have been commited to the task of "translating" some complex statistical algorithms from Matlab to C++. The goal is to be three times as fast as matlab ( the latest) . I've...
1
by: Peterwkc | last post by:
Hello all expert, i have two program which make me desperate bu after i have noticed the forum, my future is become brightness back. By the way, my problem is like this i the first program was...
2
by: DarrenWeber | last post by:
Below is a module (matrix.py) with a class to implement some basic matrix operations on a 2D list. Some things puzzle me about the best way to do this (please don't refer to scipy, numpy and...
0
by: DarrenWeber | last post by:
# Copyright (C) 2007 Darren Lee Weber # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free...
18
by: Hypnotik | last post by:
Hello everyone. I'm writing a program which uses a class called matrix. I have written all of the different functions, constructor, etc. When I run the program I receive "Constructor", which I...
2
by: rijaalu | last post by:
I am designing a matrix class that performs addition, multicpication, substraction and division. When ever i complie the code it shows an error. include <iostream> using namespace std; class...
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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.