By Stephen Jackson, on January 16th, 2012%
I’ve recently ran into a bit of trouble with maintaining the aspnet session state across a subdomains of the same application. The main problem was that the ASPNET SessionID cookie by default points to the full web address, meaning that when you navigate to a subdomain, aspnet creates a new SessionID cookie for that subdomain and . . . → Read More: ASP.NET Hosting :: ASP.NET Session State, Cookies and Subdomains
By Wayne Plotche, on November 18th, 2010%
One great new feature being introduced in ASP.NET 4 is a new code block (often called a Code Nugget by members of the Visual Web Developer team) syntax which provides a convenient means to HTML encode output in an ASPX page or view.
<%: CodeExpression %>
Let’s look at an example of how this might be used in . . . → Read More: ASP.NET 4 Hosting :: Html Encoding Code Blocks With ASP.NET 4
By Stephen Jackson, on November 11th, 2010%
Adding MetaKeyword and MetaDescription Using Page object
Meta keywords and description are most important components of a page when we want to make it search engine friendly. Every search engine will look for these tags to know more information of the page contents. ASP.Net 2.0 introduced a new feature where one can add these tags from the . . . → Read More: ASP.NET 4.0 Hosting :: New Features ASP.NET 4.0