473,398 Members | 2,393 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,398 software developers and data experts.

Need Some Advice.

Hello,

Until now I have been using Dreamweaver to create ASP.Net/VB web sites.
I gave up of using it. Too many limitations.

What is the best software to create ASP.NET/VB web sites?

Maybe Web Matrix from ASP.NET.
Or Visual Studio?

What do you advise me to use?

Thanks,
Miguel

Nov 19 '05 #1
3 1413
Miguel:
I code everything by hand so take my opinion with a grain of salt...VS.Net
is a pretty poor WYSIWYG HTML editor, but as far as an IDE is concerened
(for pure .Net programming) it's king. hopefully in ASP.Net you spend less
time with the ASP part of it and more time in your business and data
layers...which makes VS.Net the best choice.

Web Matrix can't be beat for it's price...and I've heard of many people
using Dreamweaver with mixed success.

If you can afford it, VS.Net is hands down a better choice in my opinion...

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Shapper" <mdmoura*NOSPAM*@gmail.*DELETE2SEND*com> wrote in message
news:uA****************@TK2MSFTNGP09.phx.gbl...
Hello,

Until now I have been using Dreamweaver to create ASP.Net/VB web sites.
I gave up of using it. Too many limitations.

What is the best software to create ASP.NET/VB web sites?

Maybe Web Matrix from ASP.NET.
Or Visual Studio?

What do you advise me to use?

Thanks,
Miguel

Nov 19 '05 #2
Hello Karl,

I have installed Dreamweaver which I have been using, Web Matrix and
Visual Studio 2003. During the last week I have been comparing the 3.

Both Dreamweaver and Web Matrix create very similar code.
In Dreamweaver some code is hidden because it uses DreamweaverCTRLS.dll.

The moment I tried Visual Studio 2003 I got confused.
This is my idea from Visual Studio when comparing to what I am used to:

Some elements are familiar to me:
1. Web.Config File.
2. ASP.NET (aspx) pages.
3. CSS files.

However some elements are a little bit strange:
1. I have an SQL database set up.
Usually I create datasets on the .aspx files.
In Visual studio it seems the dataset is created using XML in XST
files.
Creating a data access has been a problem.

Am I right? So how can I access the dataset in my aspx file?

2. What is global.asax? How does it work exactly?

3. Usually, in each page I place the scripts in each .aspx page.
Something like:
<script language="vb" runat="server">

In Visual Studio there are script files.
How can I link an .aspx page a script file?
Is a script file to be used only by one page or can be access by any?
Anyway, this is a simple example of what I am used to:
(It has a dataset and the script and body part in the same page)

<%@ Page Language="VB" %>
<script runat="server">

Function MyQueryMethod() As System.Data.DataSet
Dim connectionString As String = "server='(local)';
trusted_connection=true; database='dbBonsAlunos'"
Dim dbConnection As System.Data.IDbConnection = New
System.Data.SqlClient.SqlConnection(connectionStri ng)
Dim queryString As String = "SELECT [users].* FROM [users]"
Dim dbCommand As System.Data.IDbCommand = New
System.Data.SqlClient.SqlCommand
dbCommand.CommandText = queryString
dbCommand.Connection = dbConnection

Dim dataAdapter As System.Data.IDbDataAdapter = New
System.Data.SqlClient.SqlDataAdapter
dataAdapter.SelectCommand = dbCommand
Dim dataSet As System.Data.DataSet = New System.Data.DataSet
dataAdapter.Fill(dataSet)

Return dataSet
End Function

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<!-- Insert content here -->
</form>
</body>
</html>

Is the future Visual Studio 2005 Express similar to Visual Studio 2003
or to Web Matrix?

Thanks,
Miguel


"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:karl REMOVE @ REMOVE openmymind REMOVEMETOO .
ANDME net:
Miguel:
I code everything by hand so take my opinion with a grain of salt...VS.Net
is a pretty poor WYSIWYG HTML editor, but as far as an IDE is concerened
(for pure .Net programming) it's king. hopefully in ASP.Net you spend less
time with the ASP part of it and more time in your business and data
layers...which makes VS.Net the best choice.

Web Matrix can't be beat for it's price...and I've heard of many people
using Dreamweaver with mixed success.

If you can afford it, VS.Net is hands down a better choice in my opinion...

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Shapper" <mdmoura*NOSPAM*@gmail.*DELETE2SEND*com> wrote in message
news:uA****************@TK2MSFTNGP09.phx.gbl...
Hello,

Until now I have been using Dreamweaver to create ASP.Net/VB web sites.
I gave up of using it. Too many limitations.

What is the best software to create ASP.NET/VB web sites?

Maybe Web Matrix from ASP.NET.
Or Visual Studio?

What do you advise me to use?

Thanks,
Miguel


Nov 19 '05 #3
Shapper:
VS.Net uses CodeBehind (google search) as the programming model. Instead of
having the C#/VB.Net code as part of the page, it uses a separate file..this
is generally the prefered way of programming ASP.Net as it can lead to a
cleaner separation between the pure presentation layer and the presentation
logic layer. If you right clck on the ASPX page and go "View Code" you'll
see what I'm talking about.

Global.asax is a file which contains methods that are executed throughout
the life of a request. Application_Start for example is executed at the
very start of the application's life. Application_BeginRequest when the
user firsts hits a page and so on....They are useful places to put code that
must happen during these events (like a visitor log would make sense in
Applciation_BeginRequest)

Datasets created using XML/XST isn't specific to Visual Studio. This is an
ADO.Net thing and unlike the datasets you are used to, they are called
"Typed DataSets" because they are strongly typed. Again, this is generally
prefered over DataSets. There's nothing stopping you from using normal
DataSets in VS.Net, or even a mix of the two.

Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying)
http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Shapper" <mdmoura*NOSPAM*@gmail.*DELETE2SEND*com> wrote in message
news:e9****************@TK2MSFTNGP09.phx.gbl...
Hello Karl,

I have installed Dreamweaver which I have been using, Web Matrix and
Visual Studio 2003. During the last week I have been comparing the 3.

Both Dreamweaver and Web Matrix create very similar code.
In Dreamweaver some code is hidden because it uses DreamweaverCTRLS.dll.

The moment I tried Visual Studio 2003 I got confused.
This is my idea from Visual Studio when comparing to what I am used to:

Some elements are familiar to me:
1. Web.Config File.
2. ASP.NET (aspx) pages.
3. CSS files.

However some elements are a little bit strange:
1. I have an SQL database set up.
Usually I create datasets on the .aspx files.
In Visual studio it seems the dataset is created using XML in XST
files.
Creating a data access has been a problem.

Am I right? So how can I access the dataset in my aspx file?

2. What is global.asax? How does it work exactly?

3. Usually, in each page I place the scripts in each .aspx page.
Something like:
<script language="vb" runat="server">

In Visual Studio there are script files.
How can I link an .aspx page a script file?
Is a script file to be used only by one page or can be access by any?
Anyway, this is a simple example of what I am used to:
(It has a dataset and the script and body part in the same page)

<%@ Page Language="VB" %>
<script runat="server">

Function MyQueryMethod() As System.Data.DataSet
Dim connectionString As String = "server='(local)';
trusted_connection=true; database='dbBonsAlunos'"
Dim dbConnection As System.Data.IDbConnection = New
System.Data.SqlClient.SqlConnection(connectionStri ng)
Dim queryString As String = "SELECT [users].* FROM [users]"
Dim dbCommand As System.Data.IDbCommand = New
System.Data.SqlClient.SqlCommand
dbCommand.CommandText = queryString
dbCommand.Connection = dbConnection

Dim dataAdapter As System.Data.IDbDataAdapter = New
System.Data.SqlClient.SqlDataAdapter
dataAdapter.SelectCommand = dbCommand
Dim dataSet As System.Data.DataSet = New System.Data.DataSet
dataAdapter.Fill(dataSet)

Return dataSet
End Function

</script>
<html>
<head>
</head>
<body>
<form runat="server">
<!-- Insert content here -->
</form>
</body>
</html>

Is the future Visual Studio 2005 Express similar to Visual Studio 2003
or to Web Matrix?

Thanks,
Miguel


"Karl Seguin" <karl REMOVE @ REMOVE openmymind REMOVEMETOO . ANDME net>
wrote in message news:karl REMOVE @ REMOVE openmymind REMOVEMETOO .
ANDME net:
Miguel:
I code everything by hand so take my opinion with a grain of salt...VS.Net is a pretty poor WYSIWYG HTML editor, but as far as an IDE is concerened
(for pure .Net programming) it's king. hopefully in ASP.Net you spend less time with the ASP part of it and more time in your business and data
layers...which makes VS.Net the best choice.

Web Matrix can't be beat for it's price...and I've heard of many people
using Dreamweaver with mixed success.

If you can afford it, VS.Net is hands down a better choice in my opinion...
Karl

--
MY ASP.Net tutorials
http://www.openmymind.net/ - New and Improved (yes, the popup is annoying) http://www.openmymind.net/faq.aspx - unofficial newsgroup FAQ (more to
come!)
"Shapper" <mdmoura*NOSPAM*@gmail.*DELETE2SEND*com> wrote in message
news:uA****************@TK2MSFTNGP09.phx.gbl...
Hello,

Until now I have been using Dreamweaver to create ASP.Net/VB web sites. I gave up of using it. Too many limitations.

What is the best software to create ASP.NET/VB web sites?

Maybe Web Matrix from ASP.NET.
Or Visual Studio?

What do you advise me to use?

Thanks,
Miguel

Nov 19 '05 #4

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

Similar topics

5
by: Andy | last post by:
Hello All, I'm currently getting into ASP and need some advice on any particular books or tutorials or websites that you can recommend so that I can get a good foundation on ASP as well as...
11
by: Mark | last post by:
Hi, For the last 2 years I've been developing vehicle tracking/telemetric software for a company as a self employed individual. The project is quiet big, and is going to be there flagship...
2
by: andyjgw | last post by:
Hi I'm a bit new to the designing of custom web page controls and using them in the properties designer window - need a little advice on a concept here. I have two properties in my control -...
1
by: Chris Lane | last post by:
Need Advice on prebuilt Exception Assemblies Please take a look at my post on the Titled: Need Advice on prebuilt Exception Assemblies posted on 04/21/04 Thank
3
by: Sigmathaar | last post by:
Hi, I'm need some advice about lists and vectors. I'm doing a program who needs to have sequential access of a non ordered unit of objects whose size decreases almost each time the sequence is...
4
by: Web_PDE_Eric | last post by:
I don't know where to go, or what to buy, so plz re-direct me if I'm in the wrong place. I want to do high performance integration of partial differential eqns in n dimensions (n=0,1,2,3..etc) I...
9
by: laststubborn | last post by:
Dear All, We have a big concern in our Database system. We have 2000 transactions daily in our database. We need to replicate some how the database for our fail over setup. I tried transactional...
7
by: John Paul | last post by:
I'm thinking of building an e-commerce site in php. Anyone got any advice in building one? What is the best way to implement a payment system? Are any legal issues involved? Thanks,
51
by: cool_ratikagupta | last post by:
hello friends i ha just started learning c can u all give me the tips to make myself strong in c lanuage . as i want to be the best in watever i do . so just a request from all of u here plz help...
7
by: SM | last post by:
Hello, I have a index.php template (2 columns). The right columns contains a bunch of links (interviews, poems, etc...) The left columns contains the actual article. So if I click on a link on...
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: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.