Monday, March 26, 2012
Suggested Books
I'm new to ASP.NET and I'm looking for a book to help me get going here.
I will be doing ASP.NET using VisualSudio.NET.
Can anyone recommend a good book that covers the two together?
- JStephen Walther's book "ASP.NET Unleashed" by SAMS is a good one.
http://www.amazon.com/exec/obidos/t...=books&n=507846
--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Jay" <jerry280@.yahoo.com> wrote in message
news:uGixsqGUDHA.1992@.TK2MSFTNGP12.phx.gbl...
> Hello all.
> I'm new to ASP.NET and I'm looking for a book to help me get going here.
> I will be doing ASP.NET using VisualSudio.NET.
> Can anyone recommend a good book that covers the two together?
> - J
The first edition is released. I have it.
I guess the second edition is not released yet.
Here's a better link:
http://www.amazon.com/exec/obidos/t...=glance&s=books
--
I hope this helps,
Steve C. Orr, MCSD
http://Steve.Orr.net
"Jay" <jerry280@.yahoo.com> wrote in message
news:OHWNkuHUDHA.1724@.TK2MSFTNGP10.phx.gbl...
> any idea when this book gets released?
> Thanks for the suggesstion!!!
> - J
> "Steve C. Orr, MCSD" <Steve@.Orr.net> wrote in message
> news:O34z1aHUDHA.3640@.tk2msftngp13.phx.gbl...
> > Stephen Walther's book "ASP.NET Unleashed" by SAMS is a good one.
http://www.amazon.com/exec/obidos/t...=books&n=507846
> > --
> > I hope this helps,
> > Steve C. Orr, MCSD
> > http://Steve.Orr.net
> > "Jay" <jerry280@.yahoo.com> wrote in message
> > news:uGixsqGUDHA.1992@.TK2MSFTNGP12.phx.gbl...
> > > Hello all.
> > > > I'm new to ASP.NET and I'm looking for a book to help me get going
here.
> > > > I will be doing ASP.NET using VisualSudio.NET.
> > > > Can anyone recommend a good book that covers the two together?
> > > > - J
> >
Saturday, March 24, 2012
Suggestions for the arquitecture of the site
I'm looking into putting together a site that would model a book where each user would be able to subscribe to the chapters. For example, a user could subscribe to chapters 1 and 5 and another user could subscribe to chapters 2 and 3.
Any suggestions on how to implement the security? Any sites out there with examples, tutorials, etc?
Any help is appreciated.
Thanks.Hi,
some information to start with:Authentication and Authorization.
I don't know about examples for what you're asking right now but I would suggest that you first model your database and then try to visualize things in a neat way.
Grz, Kris.
I'm familiar with the basics on authorization. Specifically forms authorization...
I'm looking for something more targeted at the fact of having several chapters... I know how to configure the application so that users have to sign-up and login in order to read the whole "book" - just haven't figured out how to do it by chapter...
Thanks for the reply.
You could use roles. I assume you have what users are authorized to view what chapters in a database...just assign these to whatever implementation of IPrincipal you're using when they log in and then check on the page (or use the web.config) for something like if(User.IsInRole("Chapter4")) ...