473,386 Members | 1,702 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 book recommendation???

bt
I am just starting to learn ASP and would like to pick up a good book.
I have been through ASP Programming for the Absolute Beginner and got
some ideas, but it only discussed local servers running PWS or IIS -
nothing about working with an internet ASP hosting service. It also
lacks good descriptions of syntax.

I have also looked at the O'Reilly ASP in a Nutshell, but it seems
like a reference for more advanced users, not a learning tool.

I have some Javascript background, but right now I'm trying to pick up
ASP and VBScript at the same time so a book that has an ASP/VBScript
focus would be ideal.

thanks, BDT
Jul 19 '05 #1
7 1721
Forget books and use something much much better....

www.aspfaq.com

Reccomend it over a book etc, any day of the week..... and then some ;o)

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"bt" <bt@.com> wrote in message
news:rv********************************@4ax.com...
I am just starting to learn ASP and would like to pick up a good book.
I have been through ASP Programming for the Absolute Beginner and got
some ideas, but it only discussed local servers running PWS or IIS -
nothing about working with an internet ASP hosting service. It also
lacks good descriptions of syntax.

I have also looked at the O'Reilly ASP in a Nutshell, but it seems
like a reference for more advanced users, not a learning tool.

I have some Javascript background, but right now I'm trying to pick up
ASP and VBScript at the same time so a book that has an ASP/VBScript
focus would be ideal.

thanks, BDT

Jul 19 '05 #2
PW

"Steven Burn" <pv*@noyb.com> wrote in message
news:OS**************@TK2MSFTNGP12.phx.gbl...
Forget books and use something much much better....
www.aspfaq.com

I agree, don't waste your money, use the net.
Jul 19 '05 #3
bt wrote:
I am just starting to learn ASP and would like to pick up a good book.
I have been through ASP Programming for the Absolute Beginner and got
some ideas, but it only discussed local servers running PWS or IIS -
nothing about working with an internet ASP hosting service. It also
lacks good descriptions of syntax.

I have also looked at the O'Reilly ASP in a Nutshell, but it seems
like a reference for more advanced users, not a learning tool.

I have some Javascript background, but right now I'm trying to pick up
ASP and VBScript at the same time so a book that has an ASP/VBScript
focus would be ideal.

thanks, BDT

If you want a *single* book that
a. explains what is necessary,
b. in the correct order,
c. doesn't have anything missing so you need to buy another 9 books,
d. has a complete index that is actually useful,
d. will not give you a hernia carrying it around (it's less than an inch
thick!)
then buy
"ASP: Active Server Pages"
subtitled "The Power Guide to Developing Server-Based Web Applications"
by Andrew M. Fedorchek and David K. Rensin (IDG Books, 1997). IMO it's
still the best intro to ASP for programmers.

The book is out of print. It's somewhat out-of-date about serverside
info, but you'll appreciate the insights that the dated information
provides.

You can find the book at Amazon used for as little as $5 today:
http://www.amazon.com/exec/obidos/tg...=ATVPDKIKX0DER
Jul 19 '05 #4
or http://www.learnasp.com/learnasp/

--
Frederic
MCP, IT Project+, i-Net+, CIW Associate, A+
----------------------------------------------------------------------------
http://fredsfastcram.netfirms.com
----------------------------------------------------------------------------

"Steven Burn" <pv*@noyb.com> wrote in message
news:OS**************@TK2MSFTNGP12.phx.gbl...
Forget books and use something much much better....

www.aspfaq.com

Reccomend it over a book etc, any day of the week..... and then some ;o)

--

Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!
"bt" <bt@.com> wrote in message
news:rv********************************@4ax.com...
I am just starting to learn ASP and would like to pick up a good book.
I have been through ASP Programming for the Absolute Beginner and got
some ideas, but it only discussed local servers running PWS or IIS -
nothing about working with an internet ASP hosting service. It also
lacks good descriptions of syntax.

I have also looked at the O'Reilly ASP in a Nutshell, but it seems
like a reference for more advanced users, not a learning tool.

I have some Javascript background, but right now I'm trying to pick up
ASP and VBScript at the same time so a book that has an ASP/VBScript
focus would be ideal.

thanks, BDT


Jul 19 '05 #5
Not a book but here are a few good ASP sites:
o ASP101 Samples - http://www.asp101.com/samples
o W3Schools ASP Tutorial - http://www.w3schools.com/asp
o Microsoft VBScript Language Reference -
http://msdn.microsoft.com/scripting/.../VBScript/doc/
vbscripttoc.htm

Or for a "quick and dirty" generic ASP open source solution to putting
databases on the Web that just requires setting up a configuration page
for each table or query and uploading the database to the Web as long as
there is an autonumber field in each table (and you'll probably also
separately want to create login capabilities), perhaps try something
like this:
GenericDB by Eli Robillard
http://www.genericdb.com and then click on the Tips link to see an
example

Best regards,
J. Paul Schmidt, Freelance ASP Web Designer
http://www.Bullschmidt.com
ASP Designer Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Devdex http://www.devdex.com ***
Don't just participate in USENET...get rewarded for it!
Jul 19 '05 #6
On Tue, 22 Jun 2004 18:07:54 GMT, bt <bt@.com> wrote:
I am just starting to learn ASP and would like to pick up a good book.
I have been through ASP Programming for the Absolute Beginner and got
some ideas, but it only discussed local servers running PWS or IIS -
nothing about working with an internet ASP hosting service. It also
lacks good descriptions of syntax.

I have also looked at the O'Reilly ASP in a Nutshell, but it seems
like a reference for more advanced users, not a learning tool.
That book's not much use.

I used the Wrox press books. You may consider them quite
advanced, which is what I liked about them.

"Beginning Active Server Pages"
and
"Professional Active Server Pages", ISBN: 1861002610, only as a
reference.

These are available in at least 2 versions each. Version 3 was
the latest one and the one you should get but if you buy visit
amazon.com and see if you can pick them up 2nd hand. They have
Pro ASP 3 available from $29 2nd hand and Beg ASP 3 available
from $24. The source code for the books is available online, not
on a CD.
I have some Javascript background, but right now I'm trying to pick up
ASP and VBScript at the same time so a book that has an ASP/VBScript
focus would be ideal.


Use the internet as a reference for VBScript. You certainly
don't need a book for that.

The vast majority of the stuff in Pro ASP 3 is stuff you'll
never need.

PS: Shouldn't you be learning ASP.NET rather than ASP?

Jul 19 '05 #7
bt
Thanks for all of the good input. Some of the recommended websites
look like great resources and I might check out some of the books as
well. I don't mind the belt AND suspenders approach.

thanks again, BDT
Jul 19 '05 #8

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

Similar topics

1
by: php newbie | last post by:
I have the Transact-SQL Programming book from O'Reilly. It was published in 1999. It states that "SELECT ... INTO" statements end up locking the entire database of the target table. Since the...
0
by: Phil Da Lick! | last post by:
Hi all, I am about to move into programming using an xml web services model. The first thing I need to know is whether you can use them privately within a corporate LAN, or whether you need to...
2
by: Bruce Dodds | last post by:
I will be doing an app for a nonprofit. It would be useful for them to have a good entry-level book on Access so that they don't have to pay someone to design all their queries and reports. I'm not...
3
by: Alan | last post by:
I got a book : C# Primer Plus, this is about the C#. I am going to learn Visual C#, another book recommendation about this specific topic ? I don't want a book repeat the C# stuffs already in my...
9
by: Reginald Blue | last post by:
I asked this before, although several months ago, and I want to make sure the recommendation hasn't changed. I'm a developer who is working on a Web application, but most of my work is at the...
16
by: Robert Zurer | last post by:
Can anyone suggest the best book or part of a book on this subject. I'm looking for an in-depth treatment with examples in C# TIA Robert Zurer robert@zurer.com
6
by: ted | last post by:
Hi, I have been programming for about 5 years mainly on client apps that are standalone and n-tier. I have very little experience with web development. I need a recommendation on a book that...
4
by: Huy | last post by:
I am in need of a book recommendation to pick up C++ properly and elegantly. I program extensively within the Python programming language and have a decent grasp of OOP (possibly could be better)...
3
by: Lauren Quantrell | last post by:
After a few years of Access VBA it's time to learn C#.Net. Can anyone recommend a book that is good for someone with no experience other than VBA?
14
by: At_sea_with_C | last post by:
Hello all, Im some way in C and i have to start on C++ to. I want your opinions on Teach yourself C++ in 21 days by Jessi Liberty. Can I go with it as my first book are are there better ones? ...
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: 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...
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
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,...

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.