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

How to start with ASP.net

I'm new to .net so forgive me if this is a dumb question, but what do I need
to start writting in ASP.Net? I have written asp pages before using Visual
Interdev. I have Visual Basic .Net 2003 Standard edition that I have
recently started playing with. I'm running on a Windows 2000 machine with
IIS 5.0. Do I need a copy of ASP.Net or is that bundled in with Visual
Basic .Net 2003 Standard edition? What else do I need to start. Thanks in
advance for any insight.
Nov 18 '05 #1
5 1084
Look on www.asp.net for WebMatrix

Jeff

"M Smith" <ms****@avma.org> wrote in message
news:#y**************@tk2msftngp13.phx.gbl...
I'm new to .net so forgive me if this is a dumb question, but what do I need to start writting in ASP.Net? I have written asp pages before using Visual Interdev. I have Visual Basic .Net 2003 Standard edition that I have
recently started playing with. I'm running on a Windows 2000 machine with
IIS 5.0. Do I need a copy of ASP.Net or is that bundled in with Visual
Basic .Net 2003 Standard edition? What else do I need to start. Thanks in advance for any insight.

Nov 18 '05 #2
The OP already has the Visual Studio.NET Standard Edition which was clearly
stated and which is clearly the better IDE for ASP.NET development.

I believe that all versions of VS.NET install the .NET Framework (DNF) by
default. That said...

Put the following into wwwroot and call it from IE. It is a simple way to
determine if the DNF is installed and properly configured. If you do not see
the obvious results you may have to download and install the .NET Framework
or reconfigure your current installation.

<!-- tstDotNet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

There can be problems if for example the DNF was installed before IIS.
There are other issues that may require using aspnet_regiis. To learn more
about this context go to a comand line and execute aspnet_regiis /? or use
Google to learn more about aspnet_regiis.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:OQ**************@TK2MSFTNGP09.phx.gbl...
Look on www.asp.net for WebMatrix

Jeff

"M Smith" <ms****@avma.org> wrote in message
news:#y**************@tk2msftngp13.phx.gbl...
I'm new to .net so forgive me if this is a dumb question, but what do I need
to start writting in ASP.Net? I have written asp pages before using

Visual
Interdev. I have Visual Basic .Net 2003 Standard edition that I have
recently started playing with. I'm running on a Windows 2000 machine with IIS 5.0. Do I need a copy of ASP.Net or is that bundled in with Visual
Basic .Net 2003 Standard edition? What else do I need to start.

Thanks in
advance for any insight.


Nov 18 '05 #3
Didn't know VB.NET Standard Edition allowed you to create ASP.NET
applications. Is it in the Template list?

Jeff
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:uw**************@TK2MSFTNGP09.phx.gbl...
The OP already has the Visual Studio.NET Standard Edition which was clearly stated and which is clearly the better IDE for ASP.NET development.

I believe that all versions of VS.NET install the .NET Framework (DNF) by
default. That said...

Put the following into wwwroot and call it from IE. It is a simple way to
determine if the DNF is installed and properly configured. If you do not see the obvious results you may have to download and install the .NET Framework or reconfigure your current installation.

<!-- tstDotNet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

There can be problems if for example the DNF was installed before IIS.
There are other issues that may require using aspnet_regiis. To learn more
about this context go to a comand line and execute aspnet_regiis /? or use
Google to learn more about aspnet_regiis.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:OQ**************@TK2MSFTNGP09.phx.gbl...
Look on www.asp.net for WebMatrix

Jeff

"M Smith" <ms****@avma.org> wrote in message
news:#y**************@tk2msftngp13.phx.gbl...
I'm new to .net so forgive me if this is a dumb question, but what do I
need
to start writting in ASP.Net? I have written asp pages before using

Visual
Interdev. I have Visual Basic .Net 2003 Standard edition that I have
recently started playing with. I'm running on a Windows 2000 machine with IIS 5.0. Do I need a copy of ASP.Net or is that bundled in with

Visual Basic .Net 2003 Standard edition? What else do I need to start.

Thanks
in
advance for any insight.



Nov 18 '05 #4
AFIK and making an educated guess as I use Enterprise Edition the Standard
Edition comes in VB or C# only but can be used to do both ASP.NET or
Winforms. The Professional Edition supports both languages and the
Enterprise Edition supports both languages but has more functionality.

In any event, the official details are all on Microsoft's website.
--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:%2****************@tk2msftngp13.phx.gbl...
Didn't know VB.NET Standard Edition allowed you to create ASP.NET
applications. Is it in the Template list?

Jeff
"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:uw**************@TK2MSFTNGP09.phx.gbl...
The OP already has the Visual Studio.NET Standard Edition which was clearly
stated and which is clearly the better IDE for ASP.NET development.

I believe that all versions of VS.NET install the .NET Framework (DNF) by
default. That said...

Put the following into wwwroot and call it from IE. It is a simple way to determine if the DNF is installed and properly configured. If you do not

see
the obvious results you may have to download and install the .NET

Framework
or reconfigure your current installation.

<!-- tstDotNet.aspx -->

<%@ Page language="C#" %>
<html>
<head>
<title>Testing ASP.NET and C#</title>
</head>
<body>
<h2>Testing ASP.NET and C#:</h2>

Today's Date:
<%=DateTime.Now.ToString()%>
</body>
</html>

There can be problems if for example the DNF was installed before IIS.
There are other issues that may require using aspnet_regiis. To learn more about this context go to a comand line and execute aspnet_regiis /? or use Google to learn more about aspnet_regiis.

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:OQ**************@TK2MSFTNGP09.phx.gbl...
Look on www.asp.net for WebMatrix

Jeff

"M Smith" <ms****@avma.org> wrote in message
news:#y**************@tk2msftngp13.phx.gbl...
> I'm new to .net so forgive me if this is a dumb question, but what do I need
> to start writting in ASP.Net? I have written asp pages before using
Visual
> Interdev. I have Visual Basic .Net 2003 Standard edition that I
have > recently started playing with. I'm running on a Windows 2000
machine with
> IIS 5.0. Do I need a copy of ASP.Net or is that bundled in with

Visual > Basic .Net 2003 Standard edition? What else do I need to start.

Thanks
in
> advance for any insight.
>
>



Nov 18 '05 #5
"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message news:<#P**************@tk2msftngp13.phx.gbl>...
Didn't know VB.NET Standard Edition allowed you to create ASP.NET
applications. Is it in the Template list?


Yep, there should be a "Web Application .... etc", and a "Web
Service..", if you want to develop XML Web Services.

VS.NET only allows you to create asp.net webforms/pages and user
controls in web application projects. And VS.NET will automatically
creates a virtual root in IIS for every web application project -- you
can't refuse :)
Nov 18 '05 #6

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

Similar topics

2
by: engsol | last post by:
I'm using Python to parse a bunch of s/w test files and make csv files for later report generation by MS ACCESS....(my boss loves the quick turn-around compared to C). Each log file may contain one...
0
by: Mark Adams | last post by:
I am a relative newbie to MySQL. I had a Postfix+Courier+MySQL mail server running for several months. It took me a week or so to get it up and running in September. Now, I did a clean upgrade to...
16
by: Serdar Kalaycý | last post by:
Hi everybody, My problem seems a bit clichè but I could not work around. Well I read lots of MSDN papers and discussions, but my problem is a bit different from them. When I tried to run the...
9
by: Tim D | last post by:
Hi, I originally posted this as a reply to a rather old thread in dotnet.framework.general and didn't get any response. I thought it might be more relevant here; anyone got any ideas? My...
0
by: henning.friese | last post by:
Hello NG, I'm need to write some code which creates tiff files from various document types (doc, pdf, xls). I want to do this by ShellExecuting (via System.Diagnostics.Process) the doc-files...
8
by: Challenge | last post by:
Hi, I got error, SQL1768N Unable to start HADR. Reason code = "7", when I tried to start hadr primary database. Here are the hadr configuration of my primary db: HADR database role ...
4
by: carson | last post by:
I have written two windows services: - service A does some crunching of local data files and uploads them to a central processing computer via http. - service B monitors a manifest file on a...
2
by: =?Utf-8?B?Vmlua2k=?= | last post by:
Hello Everyone, I have an exe application that I want to start remotely.Once I start the application, I want to press ok to that application. To start the application, I did...
0
by: Yue Fei | last post by:
I have a multi thread python code, threads can start immediately if I run on command line, but I can get them started right the way if I call the same code from C/C++. test code like this: from...
0
by: Vinod Sadanandan | last post by:
Fast-Start Failover An Overview In Dataguard Environment ============================================================================= This article describes the automatic fast start failover...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

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.