Browse by Tags
All Tags »
Web (
RSS)
ASP.NET provides out of the box three session state stores: Provider Description InProc Session state is stored in the ASP.NET cache. SQLServer Session state is stored out-of-process in an SQL Server database. StateServer Session state is stored out-of...
In one of the environments I work, cookies cannot be used because the pages run inside web browser controls running on a client application and cookies end up being shared by all browsers. Fortunately, ASP.NET allows us to persist some cookies as part...
On my last post I wrote about a solution for the problem that arises when we try the use path infos and ASP.NET Themes and Skins together . Raj Kaimal suggested rewriting all LINK HTML elements URLs to the correct URL as seen from the client. Something...
Updated on 2008.07.28 – The code was done in a hurry and, talking to my friend Luís , I noticed that I had forgotten to make a case insensitive comparison and that the code was not so obvious. So, I updated the code and added an explanation. On my last...
If you ever worked with ASP.NET Themes and Skins , you know that stylesheet links are added to the head section of the HTML document. The rendered URL to these stylesheets is always relative to location of the page being requested. So, for a request to...
I find the System.Web.HttpValueCollection class very useful in a wide number of situations that involve composing HTTP requests or any other need to represent name/value collection as a string (in an XML attribute, for example). As of now ( .NET Framework...
If you run this code: System.Collections.Specialized. NameValueCollection queryString = System.Web. HttpUtility .ParseQueryString( "noKey&=emptyKey&A=Akey" ); queryString will actually have the running type of System.Web.HttpValueCollection...
On previous posts [ ^ ][ ^ ] I mentioned the size of ASP.NET validators and validation summary rendering and the fact that expando attributes are being used to add properties. Mohamed also mentions this issue. Besides the fact that custom attributes aren...
On a previous post I mentioned IETester . Jorge Moura mentioned TredoSoft ’s MultipleIEs and a list of web browsers .
Some days ago a colleague of mine pointed out to me this tool ( IETester ) that allows testing the different rendering and JavaScript engines of Internet Explorer (5.5, 6, 7 and 8beta1) side by side with the installed version. I haven’t tested IETester...
More Posts
Next page »