3.1.
Programming Practices
Data Structuring can influence the performance. If the logic for home page news articles is to present the latest three, the logic of looking for articles structured as /year/month/day/article is faster than sorting a large number of articles stored directly under /news.
Formalize CSS - 0 views
-
I want some measure of control over form elements, without changing them so drastically as to appear foreign in a user's operating system. Thus, my quest to find a happy medium, where browsers would generally agree and let me keep my sanity. The result is what I'm simply referring to as Formalize CSS.
Understanding Controllers - 1 views
jQuery listnav plugin - 1 views
Take Control of Your Web.Config - 1 views
Mercurial SCM - 0 views
GMap.NET - 1 views
HTML5 Video Player | VideoJS - 0 views
Google Calendar event URLs - 0 views
-
The "recipe" for creating the HTML snippets that control Google Calendar event reminder buttons is described below. These instructions assume you have some familiarity with HTML. We also have a simple form to help you create HTML snippets for these buttons if you don't want to get familiar with the instructions below.
Brand Control Management | Fision - 0 views
Agile Carousel - Javascript Slideshow - Image Carousel - 0 views
-
Implement your slideshow with the Agile Carousel JQuery plugin. Highly customizable so you can build according to your requirements. JSON data format is used to provide easier integration with external data or data from your CMS. Use it for agile web development. This is an all new version written from scratch. JQuery UI effects and the ability to read files on the server are no longer included. New features are added, such as "Control Sets" which allow for a more customizable setup. Now posted on Github for faster development.
Programming - SDN5 - 0 views
-
-
3.3. Convert Underperforming XSL Renderings to .NET Certain operations can be completed much more efficiently in .NET than in XSL. Use Sitecore’s browser-based debugger to identify poorly performing code for migration to pure .NET. Invoking XSL may be more expensive in .NET than executing native .NET code. If possible, certain XSL renderings, especially those which consume a great deal of resources or can only be cached under limited conditions should be converted to .NET method renderings, sublayouts or web controls. Expensive XSL code can be converted to .NET extension controls and functions.
YouTube JavaScript Player API Reference - 0 views
Closure Library - Google Code - 0 views
-
The Closure Library is a broad, well-tested, modular, and cross-browser JavaScript library. You can pull just what you need from a large set of reusable UI widgets and controls, and from lower-level utilities for DOM manipulation, server communication, animation, data structures, unit testing, rich-text editing, and more.
jQuery Joyride Feature Tour Plugin - 0 views
-
Joyride is extremely flexible and lets you take control of how people interact with your tour. We programmed it to be cross-browser compatible with modern browsers and even used some fancy CSS to avoid images. Now let's see just how easy it is to take your first ride without getting the fuzz involved.
Cross-Site Request Forgery (CSRF) Prevention Cheat Sheet - OWASP - 0 views
-
"Viewstate (ASP.NET) ASP.NET has an option to maintain your ViewState. The ViewState indicates the status of a page when submitted to the server. The status is defined through a hidden field placed on each page with a control. Viewstate can be used as a CSRF defense, as it is difficult for an attacker to forge a valid Viewstate. It is not impossible to forge a valid Viewstate since it is feasible that parameter values could be obtained or guessed by the attacker. However, if the current session ID is added to the ViewState, it then makes each Viewstate unique, and thus immune to CSRF. To use the ViewStateUserKey property within the Viewstate to protect against spoofed post backs. Add the following in the OnInit virtual method of the Page-derived class (This property must be set in the Page.Init event) protected override OnInit(EventArgs e) { base.OnInit(e); if (User.Identity.IsAuthenticated) ViewStateUserKey = Session.SessionID; } The following keys the Viewstate to an individual using a unique value of your choice. (Page.ViewStateUserKey) This must be applied in Page_Init because the key has to be provided to ASP.NET before Viewstate is loaded. This option has been available since ASP.NET 1.1. However, there are limitations on this mechanism. Such as, ViewState MACs are only checked on POSTback, so any other application requests not using postbacks will happily allow CSRF. "
‹ Previous
21 - 40 of 55
Next ›
Showing 20▼ items per page