Welcome to Bilal Haidar [MVP, MCT] Official Blog Sign in | Join | Help

Browse by Tags

All Tags » ASP.NET 3.5   (RSS)

Update on My First Book on ASP.NET - Professional ASP.NET 3.5 Security, Membership and Role Management with C# and VB

Now you can check my book on www.amazon.com by visiting the following link: Professional ASP.NET 3.5 Security, Membership, and Role Management with C# and VB See larger image Professional ASP.NET 3.5 Security, Membership, and Role Management with C# and

Binding a DropDownList in ASP.NET to an Enumeration

Here is a snippet code that helps you bind the items contained in an enumeration into a DropDownList in ASP.NET. To start with, let us define an enumeration as follows: public enum Directions { North = 1, East, South, West } The above is a C# definition

ASP.NET AJAX Roadmap

The ASP.NET AJAX Roadmap is published and can be reached here ( http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=14924 ) Enjoy it! Regards

ASP.NET Session State for Native HTTP Requests in IIS 7.0

In ASP.NET 2.0 and ASP.NET 3.5 applications hosted under IIS 7.0 and are running with the Integrated Mode, ASP.NET Session State does not get initialized when a native or non-managed request enters the Integrated HTTP Request pipeline. If you look at

Problem in SQL Server Session State - ASP.NET 3.5

*** Updated - April 7 2008 *** I played a little bit with the command line I am using to install the SQL Server Session State database and it seems to work fine: To register the database for the SQL Server Session State on ASP.NET 2.0 or ASP.NET 3.5:

Client Application Services Part 3

My third article in the series of articles on Client Application Services is now published on www.aspalliance.com . This is the last article in the aforementioned series! Hope you enjoy it! You can check it at: Client Application Services Part 3 ( http://aspalliance.com/1597_Client_Application_Services__Part_3

Nested MasterPage Not Firing Page_Load Event

I faced a situation today where I am trying to attach to the page_load event of a child nested master page to load some data on the master page itself. The event was not firing at all. Later on I figured out that the AutoEventWireup property on the Page