Feed on
Posts
Comments

Category Archive for 'ASP.NET'

The new ASP.NET 2.0 TreeView control is pretty handy.  It can function as a normal treeview - where you can add/remove treenodes to the nodes collection. It can also serve as a site navigation tree.  In this mode each node on the tree becomes a hyperlink to another webpage.  The hyperlink gets its Href from [...]

Read Full Post »

I fixed a bug this morning on our clients ASP.NET 2.0 website.   The site uses the ASP.NET 2.0 Login control.  If the user logged in with one account, logged out and attempted to login again they were not redirected to the destination page.
I coded the following in the Login control Authenticate event and it appears [...]

Read Full Post »

ASP.NET Lifecycle

In ASP.NET there are a lot of complex actions happening with each page request.  Code needs to be compiled.  Events need to be fired.  HttpModules and HttpHandlers are invoked.  It’s a complex process.
MSDN has a some interesting documentation showing all the action during each call to your website.
ASP.NET Lifecycle

Read Full Post »

ASP.NET 2.0 has a lot of great new features.  I’ve been working with it for about a year and I’m very impressed with what you can do with Visual Studio 2005 and ASP.NET 2.0. 
But…
There is always a ‘but I hate what they did with my…‘ statement isn’t there? I’m not happy with some of [...]

Read Full Post »