|
|
Browse by Tags
All Tags » ASP.NET 3.5
-
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
...
-
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, ...
-
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
-
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 the IIS 7.0's applicationHost.config configuration file located at: ...
-
*** 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:
aspnet_regsql -C ''Data Source=.;Integrated Security=True'' -ssadd -sstype c -d ...
-
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).
Make sure to read the previous two ...
-
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 directive is false!!!
Seems by default when you create a nested master page, its ...
|
|
|