473,770 Members | 1,870 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Advanced ASP.NET book?

Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!
Nov 19 '05 #1
9 2968
"John Robert" <jo**@nospam.co m> wrote in news:0ad101c535 28$c0182920
$a*******@phx.g bl:
I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.


These are pretty basic topics...

You can find a lot this info on 4guysfromrolla. com

Nov 19 '05 #2
You may look at this link- http://www.aspnet4you.com/Books.aspx

Prodip
www.aspnet4you.com

"John Robert" <jo**@nospam.co m> wrote in message
news:0a******** *************** *****@phx.gbl.. .
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

Nov 19 '05 #3
j
I couldn't find anything advanced enough on 4GFR that
covers what I'm trying to achieve.

Adding controls at runtime is pretty easy, but binding them
and persisting their data is another story...
These are pretty basic topics...

You can find a lot this info on 4guysfromrolla. com

.

Nov 19 '05 #4
Where can I find advanced books on your site? I only found
books with basic information like "What is code-behind".
-----Original Message-----
You may look at this link- http://www.aspnet4you.com/Books.aspx
Prodip
www.aspnet4you.com

"John Robert" <jo**@nospam.co m> wrote in message
news:0a******* *************** ******@phx.gbl. ..
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

.

Nov 19 '05 #5
One good book is ASP.NET framework Dino Esposito. It tackles the advanced
stuff. Then the ASP.NET unleashed is always a sure bet by Scott walters.
These are the two I use on a regular basis.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"John Robert" <jo**@nospam.co m> wrote in message
news:0a******** *************** *****@phx.gbl.. .
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

Nov 19 '05 #6
This book covers ViewState, HttpHandlers, how to handle client side script
(not scripting itself), ControlBuilders .

Developing Microsoft ASP.NET Server Controls and Components

http://www.amazon.com/exec/obidos/tg...l/-/0735615829

This is a good book for learning how and why to program things. It covers
reference/value types, MSIL (some), just how stuff works. It is not
specific to asp.net, but you learn alot about interfaces, event models,
boxing/unboxing, etc. It may sound like a beginner book, but believe me, it
really isn't.

Applied Microsoft >NET Framework Programming

http://www.amazon.com/exec/obidos/ASIN/0735614229/

This one came recommended, but I am only 1/3 throught it. It is only for
2.0, but apparently you can customize all aspects of the CLR from loading
and unloading AppDomains, the new AppDomainHandle r (I think it is called
that, or perhaps AppDomainManage r). It does not directly cover asp.net, but
an asp.net application is running in a AppDomain, inside an Application Pool
(Server 2003).

Customizing the Microsoft .NET Framework Common Language Runtime

http://www.amazon.com/exec/obidos/tg...l/-/0735619883

"John Robert" <jo**@nospam.co m> wrote in message
news:0a******** *************** *****@phx.gbl.. .
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

Nov 19 '05 #7
One good book is ASP.NET framework Dino Esposito. It tackles the advanced
stuff. Then the ASP.NET unleashed is always a sure bet by Scott walters.
These are the two I use on a regular basis.

--
Regards,
Alvin Bruney
[Shameless Author Plug]
The Microsoft Office Web Components Black Book with .NET
available at www.lulu.com/owc
_______________ __________
"John Robert" <jo**@nospam.co m> wrote in message
news:0a******** *************** *****@phx.gbl.. .
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

Nov 19 '05 #8
This book covers ViewState, HttpHandlers, how to handle client side script
(not scripting itself), ControlBuilders .

Developing Microsoft ASP.NET Server Controls and Components

http://www.amazon.com/exec/obidos/tg...l/-/0735615829

This is a good book for learning how and why to program things. It covers
reference/value types, MSIL (some), just how stuff works. It is not
specific to asp.net, but you learn alot about interfaces, event models,
boxing/unboxing, etc. It may sound like a beginner book, but believe me, it
really isn't.

Applied Microsoft >NET Framework Programming

http://www.amazon.com/exec/obidos/ASIN/0735614229/

This one came recommended, but I am only 1/3 throught it. It is only for
2.0, but apparently you can customize all aspects of the CLR from loading
and unloading AppDomains, the new AppDomainHandle r (I think it is called
that, or perhaps AppDomainManage r). It does not directly cover asp.net, but
an asp.net application is running in a AppDomain, inside an Application Pool
(Server 2003).

Customizing the Microsoft .NET Framework Common Language Runtime

http://www.amazon.com/exec/obidos/tg...l/-/0735619883

"John Robert" <jo**@nospam.co m> wrote in message
news:0a******** *************** *****@phx.gbl.. .
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

Nov 19 '05 #9
John,
Did you check the Table of Contents of this book? Programming Data Driven
Web Applications with ASP.NET (at
http://www.amazon.com/exec/obidos/AS...328176-1813736)
By Donny Mack, Doug Seven

Thanks,
Prodip

"John Robert" <jo**@nospam.co m> wrote in message
news:06******** *************** *****@phx.gbl.. .
Where can I find advanced books on your site? I only found
books with basic information like "What is code-behind".
-----Original Message-----
You may look at this link-

http://www.aspnet4you.com/Books.aspx

Prodip
www.aspnet4you.com

"John Robert" <jo**@nospam.co m> wrote in message
news:0a******* *************** ******@phx.gbl. ..
Hi!

Anyone has recommendations for advanced ASP.NET books? By
advanced, I mean complicated stuff... not just
authentificatio n and datagrid binding

I'm mainly interrested in learning more about letting my
customers customize a web forms (from a database... on the
fly control creation and persisting data), and other
advanced topics.

Thanks!

.

Nov 19 '05 #10

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

Similar topics

3
2216
by: ChrisL | last post by:
I currently have two SQL server books for MS SQL Server 2000. One is a prep book for the 70-229 exam, the other is a Wrox book: "professional SQL Server 2000 Programming." I'm looking for more T-SQL books that give me PRACTICAL tips on writing advanced queries. What book do you refer to? Please post them.
10
2735
by: John Wells | last post by:
Are there any books out there that are fairly current, but go into the more advanced aspects of Postgresql, such as internals and advanced programming? I'd rather avoid the whole intro to SQL with a few extra chapters on Postgresql if I could help it. Thanks, John
7
3300
by: noid droid | last post by:
Greetings. I received 4 VB .NET books and looking through the indices and tables of contents, I see that none of them addresses multithreading in VB ..NET. I just bought a bunch of books because they were so cheap. Does anyone have any suggestions for books that cover multithreading? I have enough beginners books. I don't need any more. Need a good treatment of multithreading. I've never used it in VB 6. I want to learn about it...
11
1680
by: vdrab | last post by:
Hi all, Is there some sort of coherent source (dead tree format, maybe?) on some of the more advanced features of python (decorators, metaclasses, etc)? I'm sort of looking for a python book that actually gets to the good stuff at some point, without first spending 6 chapters on how to append ints to a list. I can't seem to find any. I get the impression people just get by with scraps and code snippets
2
1807
by: Erich Pul | last post by:
hi! i'm sincerely in need for literature (in form of one or more books if possible) on advanced php topics like template systems, frameworks, MVC, ... can anyone provide a few titles or authors? many thanks in advance, erich
9
5351
by: Brett Romero | last post by:
I'd like to know what you have read lately on c# that could be considered advanced and that you would recommend. I'm looking for in-depth rather than reference books. No starter books and something that uses .NET 2.0 or published no later than 2004. Based on Amazon book reviews, the only thing I've found worth buying is: The Elements of C# Style (Paperback) (Jul 31, 2006)
10
2343
by: jklimek | last post by:
I'm currently a Delphi developer (my day job) but at my company we only write custom web application/database stuff, so we never really get into anything advanced. However, I know enough about pointers, objects, etc, to consider myself an "intermediate" level programmer. Well, I'm looking to write a game involving physics and multiplayer capability, and that pretty much means I need C++ if I want to use any existing engines (eg. HGE,...
6
1477
by: jenic.rycr | last post by:
Perhaps this is not the correct place to put this? Sorry if it isn't. I am looking for HTML 4.0 Advanced by DCC Publishing (ISBN 1562439707) either for download or purchase. (Preferably for download) I have already tried Amazon.com, and they say they don't have anymore copies. (Even though it says 2 copies available) I have searched and searched but I can't seem to find it. If someone knows anything about this I would be most appreciative....
4
8234
by: Dasuraga | last post by:
I've been programming in C++ for a while now, but the only "real" training material I have is "C++ for dummies"(to make things even worse, it's the fourth edition,which doesn't even cover STL, and it's somewhat outdated). I really want to get a book that covers more advanced topics like the STL and stream I/O in detail, but I have absolutely no clue which books are really teaching books, and which ones are just references. So, I ask you,...
0
9617
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9453
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10099
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9904
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8929
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5354
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 the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5481
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
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
2
3607
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.