473,563 Members | 2,668 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1430
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.*DELETE 2SEND*com> wrote in message
news:uA******** ********@TK2MSF TNGP09.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 DreamweaverCTRL S.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.Dat aSet
Dim connectionStrin g As String = "server='(local )';
trusted_connect ion=true; database='dbBon sAlunos'"
Dim dbConnection As System.Data.IDb Connection = New
System.Data.Sql Client.SqlConne ction(connectio nString)
Dim queryString As String = "SELECT [users].* FROM [users]"
Dim dbCommand As System.Data.IDb Command = New
System.Data.Sql Client.SqlComma nd
dbCommand.Comma ndText = queryString
dbCommand.Conne ction = dbConnection

Dim dataAdapter As System.Data.IDb DataAdapter = New
System.Data.Sql Client.SqlDataA dapter
dataAdapter.Sel ectCommand = dbCommand
Dim dataSet As System.Data.Dat aSet = New System.Data.Dat aSet
dataAdapter.Fil l(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.*DELETE 2SEND*com> wrote in message
news:uA******** ********@TK2MSF TNGP09.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_Sta rt for example is executed at the
very start of the application's life. Application_Beg inRequest 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_Beg inRequest)

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.*DELETE 2SEND*com> wrote in message
news:e9******** ********@TK2MSF TNGP09.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 DreamweaverCTRL S.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.Dat aSet
Dim connectionStrin g As String = "server='(local )';
trusted_connect ion=true; database='dbBon sAlunos'"
Dim dbConnection As System.Data.IDb Connection = New
System.Data.Sql Client.SqlConne ction(connectio nString)
Dim queryString As String = "SELECT [users].* FROM [users]"
Dim dbCommand As System.Data.IDb Command = New
System.Data.Sql Client.SqlComma nd
dbCommand.Comma ndText = queryString
dbCommand.Conne ction = dbConnection

Dim dataAdapter As System.Data.IDb DataAdapter = New
System.Data.Sql Client.SqlDataA dapter
dataAdapter.Sel ectCommand = dbCommand
Dim dataSet As System.Data.Dat aSet = New System.Data.Dat aSet
dataAdapter.Fil l(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.*DELETE 2SEND*com> wrote in message
news:uA******** ********@TK2MSF TNGP09.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
1745
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 intermediate and advanced knowledge on the subject too. I would appreciate if you can point me to some books or websites or tutorials regarding this.
11
2077
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 product. Since I had no other work at the time, I agreed to a low rate when I first started which was £100 a day. The project started small, so it was...
2
1636
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 - one that is a server name, which when entered will populate a drop-down list for the second property. I know that to get a drop-down list I will...
1
1554
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
3161
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 finished (at the begining I have about 2500 objects in the unit, after the first acces I have 2499, then 2435, then 1720 and so on). The problem is...
4
2840
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 want to do (fast) graphic output of the results. I used to use C. I want to upgrade my computer. Do I get dual core? Does C# support dual-core?...
9
1531
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 replication at midnight but our all systems locked and we had a lot of complaints from the customers and It was taking a lot of time to snapshot...
7
2036
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
2565
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 me out in improving my c .plz guide me as a techer . to do my best in c lanuage . i m clear with the concepts i just want to improve in c . as...
7
2129
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 the right menu, the article shows on the left column. The links have an url that look like this: http://www.myweb/library/?doc=194uf7s39
0
7664
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7885
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7638
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7948
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
1
5484
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 presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5213
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3642
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
2082
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.