Archives for Web Applications - Page 4
Testing the efficacy of your new landing page design
Say you just changed the design of your landing page - and want to figure out whether it ACTUALLY holds your customer's attention longer than the previous version. A/B testing (also…
Tableau Server Authentication Options
Tableau offers three choices for end user authentication No Authentication – Use an API key to access the public visualizations. No username/pwd or any other authentication mechanism required TTA –…
Kendo UI versus jQuery UI
This is an (ongoing) compilation of some Kendo UI features (mainly GRID related) that have helped me save time (over doing it with jQuery UI) Offline Data Persistence InLine Grid…
Enable IIS logging
To Enable LoggingFire up Programs and Features then click on Turn Windows features on or off on the left side then select Internet Information Services\World Wide Web Services\Health and Diagnostics\HTTP LoggingLocation of Log files%SystemDrive%\inetpub\logs\LogFilesOR C:\Windows\system32\LogFiles\W3SVC1…
Rendering PDF in a modal popup – asp.net mvc
Recently, I had to display a PDF (a pdf report, sent to my app as a byte stream) in a popup window. In MVC, using bootstrap, I was able to…
Multiple Applications Single IIS Server
First, do not confuse an IIS Website (or simply a 'site') with an application. Within a single site, one can host multiple applications. Each application typically gets its own folder…
Enable javascript debugger – works for chrome and IE
function onClick(detailUrl){debugger;}
Some telerik kendo mvc script issues
I love telerik - I hate working out the correct inclusion order of javascript references. Here are some common issues I encountered with Telerik MVC (Kendo) UI . Controls not…
asp.net 4.0 and 4.5.1 on IIS6 ( Windows Server 2003)
Two points to note: .NET runtime applications ARE supported on IIS (Windows Server 2003) . .NET appears as an extension in IIS ; You do need to ENABLE this extension.…
Workaround for session fixation
Tomcat A new security feature for Apache Tomcat 7 is Session Fixation Protection. Essentially, when a user authenticates their session, Tomcat will change the session ID. It does not destroy…