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

ADO.Net and ASP.Net

I know nothing about about web based programming. However, I think it's time
to inquire about making my local share drive ADO.Net application a web
ASP.Net application. Generally, how do I that? Thanks
Mar 24 '06 #1
7 1166
To put it simply buy a few books and get started on learning ado.net and asp.
net.
Mar 24 '06 #2
great help Jeff.

back to Steve, you would first need to place all your shared files on a
web server somwhere, so that they are accessible through a url like:

http://myserver.com/shared/music.mp3

You would create an asp.net page in the same directory that generates a
list of <a href="/shared/filename.ext">filename.ext</a> links
dynamically using perhaps a DataList control. You would use the
System.IO namespace to read the files from the current directory,
placing them into a DataTable (from the System.Data namespace).

I reckon that's enough hints to find the right chapters in those books
Jeff's talking about.

- Oisin

Mar 24 '06 #3
Thank you for both your reply's. What I don't understand how do I use the
ADO.Net code for the ASP application? That's what I don't understand. Do I
write scripts or something? Yes a book(s) will definity be necessary.

I have to prepare a ppt presentation for my boss to upgrade to VS 2005 and
have IT install SQL Server express instead of Access. Then talk to the portal
contractor and get the appl. installed inside the portal. The portal
contractor said they'll accept a ASP application from VS

Steve

"Braulio Diez" wrote:
Hello,

To learn ASP .net, some online tutorial:

http://www.w3schools.com/aspnet/default.asp

A very good book to start developing with ASP .net 2.0 is Murach's book:

Murach's ASP.NET 2.0 Web Programming with C# 2005

http://www.amazon.co.uk/exec/obidos/...387282-3113221
If I were you I will start using ASP .net 2.0 and Visual Studio 2005 (it
contains a lot of new features, and depending on your needs, you can even
create database driven application without writing much code).

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
I know nothing about about web based programming. However, I think it's time
to inquire about making my local share drive ADO.Net application a web
ASP.Net application. Generally, how do I that? Thanks

Mar 26 '06 #4
Hello,

To learn ASP .net, some online tutorial:

http://www.w3schools.com/aspnet/default.asp

A very good book to start developing with ASP .net 2.0 is Murach's book:

Murach's ASP.NET 2.0 Web Programming with C# 2005

http://www.amazon.co.uk/exec/obidos/...387282-3113221
If I were you I will start using ASP .net 2.0 and Visual Studio 2005 (it
contains a lot of new features, and depending on your needs, you can even
create database driven application without writing much code).

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
I know nothing about about web based programming. However, I think it's time
to inquire about making my local share drive ADO.Net application a web
ASP.Net application. Generally, how do I that? Thanks

Mar 26 '06 #5
You won't suffer much jumping into ASPX but you first need to have some
reading, the main difference between your application is to close the
connection each time you use it, and to keep in mind that there is no state
info (well, you have to use things like session, viewstate...).

I have found another online intro:

http://www.sitepoint.com/article/asp...introduction/2

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
Thank you for both your reply's. What I don't understand how do I use the
ADO.Net code for the ASP application? That's what I don't understand. Do I
write scripts or something? Yes a book(s) will definity be necessary.

I have to prepare a ppt presentation for my boss to upgrade to VS 2005 and
have IT install SQL Server express instead of Access. Then talk to the portal
contractor and get the appl. installed inside the portal. The portal
contractor said they'll accept a ASP application from VS

Steve

"Braulio Diez" wrote:
Hello,

To learn ASP .net, some online tutorial:

http://www.w3schools.com/aspnet/default.asp

A very good book to start developing with ASP .net 2.0 is Murach's book:

Murach's ASP.NET 2.0 Web Programming with C# 2005

http://www.amazon.co.uk/exec/obidos/...387282-3113221
If I were you I will start using ASP .net 2.0 and Visual Studio 2005 (it
contains a lot of new features, and depending on your needs, you can even
create database driven application without writing much code).

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
I know nothing about about web based programming. However, I think it's time
to inquire about making my local share drive ADO.Net application a web
ASP.Net application. Generally, how do I that? Thanks

Mar 27 '06 #6
Thanks Braulio

Now I'm on a mission

Steve

"Braulio Diez" wrote:
You won't suffer much jumping into ASPX but you first need to have some
reading, the main difference between your application is to close the
connection each time you use it, and to keep in mind that there is no state
info (well, you have to use things like session, viewstate...).

I have found another online intro:

http://www.sitepoint.com/article/asp...introduction/2

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
Thank you for both your reply's. What I don't understand how do I use the
ADO.Net code for the ASP application? That's what I don't understand. Do I
write scripts or something? Yes a book(s) will definity be necessary.

I have to prepare a ppt presentation for my boss to upgrade to VS 2005 and
have IT install SQL Server express instead of Access. Then talk to the portal
contractor and get the appl. installed inside the portal. The portal
contractor said they'll accept a ASP application from VS

Steve

"Braulio Diez" wrote:
Hello,

To learn ASP .net, some online tutorial:

http://www.w3schools.com/aspnet/default.asp

A very good book to start developing with ASP .net 2.0 is Murach's book:

Murach's ASP.NET 2.0 Web Programming with C# 2005

http://www.amazon.co.uk/exec/obidos/...387282-3113221
If I were you I will start using ASP .net 2.0 and Visual Studio 2005 (it
contains a lot of new features, and depending on your needs, you can even
create database driven application without writing much code).

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:

> I know nothing about about web based programming. However, I think it's time
> to inquire about making my local share drive ADO.Net application a web
> ASP.Net application. Generally, how do I that? Thanks

Mar 27 '06 #7
Good Luck !

Another good starting point is the Microsofti site gotdotnet.com , here you
have a quick start tutorial:

http://samples.gotdotnet.com/quickstart/aspplus/

Bye
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
Thanks Braulio

Now I'm on a mission

Steve

"Braulio Diez" wrote:
You won't suffer much jumping into ASPX but you first need to have some
reading, the main difference between your application is to close the
connection each time you use it, and to keep in mind that there is no state
info (well, you have to use things like session, viewstate...).

I have found another online intro:

http://www.sitepoint.com/article/asp...introduction/2

Good luck
Braulio

--
/// ------------------------------
/// Braulio DÃ*ez Colaborador DNM
///
/// http://www.dotnetmania.com
/// My Site (.net Tips): http://www.bdiez.com
/// ------------------------------


"Steve B." wrote:
Thank you for both your reply's. What I don't understand how do I use the
ADO.Net code for the ASP application? That's what I don't understand. Do I
write scripts or something? Yes a book(s) will definity be necessary.

I have to prepare a ppt presentation for my boss to upgrade to VS 2005 and
have IT install SQL Server express instead of Access. Then talk to the portal
contractor and get the appl. installed inside the portal. The portal
contractor said they'll accept a ASP application from VS

Steve

"Braulio Diez" wrote:

> Hello,
>
> To learn ASP .net, some online tutorial:
>
> http://www.w3schools.com/aspnet/default.asp
>
> A very good book to start developing with ASP .net 2.0 is Murach's book:
>
> Murach's ASP.NET 2.0 Web Programming with C# 2005
>
> http://www.amazon.co.uk/exec/obidos/...387282-3113221
>
>
> If I were you I will start using ASP .net 2.0 and Visual Studio 2005 (it
> contains a lot of new features, and depending on your needs, you can even
> create database driven application without writing much code).
>
> Good luck
> Braulio
>
> --
> /// ------------------------------
> /// Braulio DÃ*ez Colaborador DNM
> ///
> /// http://www.dotnetmania.com
> /// My Site (.net Tips): http://www.bdiez.com
> /// ------------------------------
>
>
>
>
> "Steve B." wrote:
>
> > I know nothing about about web based programming. However, I think it's time
> > to inquire about making my local share drive ADO.Net application a web
> > ASP.Net application. Generally, how do I that? Thanks

Mar 27 '06 #8

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

Similar topics

3
by: William C. White | last post by:
Does anyone know of a way to use PHP /w Authorize.net AIM without using cURL? Our website is hosted on a shared drive and the webhost company doesn't installed additional software (such as cURL)...
2
by: Albert Ahtenberg | last post by:
Hello, I don't know if it is only me but I was sure that header("Location:url") redirects the browser instantly to URL, or at least stops the execution of the code. But appearantely it continues...
3
by: James | last post by:
Hi, I have a form with 2 fields. 'A' 'B' The user completes one of the fields and the form is submitted. On the results page I want to run a query, but this will change subject to which...
0
by: Ollivier Robert | last post by:
Hello, I'm trying to link PHP with Oracle 9.2.0/OCI8 with gcc 3.2.3 on a Solaris9 system. The link succeeds but everytime I try to run php, I get a SEGV from inside the libcnltsh.so library. ...
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: 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
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...
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
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.