Skip to main content

Home/ Agency Oasis Developers/ Group items tagged dos

Rss Feed Group items tagged

Mark Ursino

Parsley.js - 0 views

  •  
    Never write a single javascript line anymore to validate your forms FrontEnd. Parsley will do that for you - and do it right -, thanks to its powerful DOM-API !
Douglas Couto

[How Do I:] Use the ASP.NET AJAX History Control?: The Official Microsoft ASP.NET Site - 0 views

  •  
    "[How Do I:] Use the ASP.NET AJAX History Control?"
Mark Ursino

http is deprecated. - 0 views

shared by Mark Ursino on 29 Jan 11 - Cached
  •  
    By default, all popular Web browsers assume the HTTP protocol. In doing so, the software prepends the 'http://' onto the requested URL and automatically connect to the HTTP server on port 80. Why then do many pages explictly set http on all hypertext links? Surely it is easier to type "domain.com" than "http://domain.com". HTTP is also deprecated due to the ever-evolving web: The HyperText Transfer Protocol is no longer used to transfer hypertext. It is increasingly becoming used a means to transfer any content over port 80. Thus the definition "http" no longer means anything in the context of a URL since you are unlikely to be requesting hypertext. As the web evolves, next generation protocols will begin to replace http. By explicitly using "http://domain.com" in your links you are forcing your viewers of the future into using an obsolete protocol. By using "//domain.com" you will guarantee the protocol of tomorrow will work with your pages of today. Succinctly, use of the http protocol is redundant and time consuming to communicate. The internet, media, and society are all better off without it.
mgraber

How do I stop Mac OS X from creating .DS_Store files on WebDAV upload? - Plone CMS: Ope... - 0 views

  •  
    How do I stop Mac OS X from creating .DS_Store files on WebDAV upload?
  •  
    How do I stop Mac OS X from creating .DS_Store files on WebDAV upload?
mgraber

James Jardine : Developer Notes - 0 views

  •  
    "Cross Site Request Forgery (CSRF) This article assumes you already understand what CSRF is and how it works. If you don't, do a quick Google search and it will clear it up. CSRF can be done using POST or GET, but GET is much easier to implement. By default, ASP.Net forms and other functionality work via the POST method. If we could submit a GET instead of a POST it would open up the attack surface a great deal. No longer do we need someone to visit a page with a form on it, but we could actually embed the GET request (a link) in emails or other medium. Fortunately for the attacker, unfortunately for the developer, .Net uses Value Shadowing for its controls. This means all server side controls, ie. Viewstate, EventValidation, EventCommand, EventArguments, etc.. It is possible to take the values that would be submitted as part of the form and just add them to the Querystring instead. Now there is a GET request that is comparable to the POST request. ASP.Net Webforms does not check whether a post back comes from GET or POST. The one thing to keep in mind is that the URL in a GET is limited in size. If the form is large and the viewstate is very large, this could block this technique from working. This depends on the way the application is configured (more later)."
mgraber

What to Do When an Exchange Store Won't Mount - 0 views

  •  
    "What to Do When an Exchange Store Won't Mount"
Mark Ursino

BaseDemo - HorizontalNav - 1 views

  •  
    HorizontalNav is a jQuery plugin that spans a horizontal navigation to fit the full width of it's container. If you've ever had to create this effect on a project, you'll know it's pretty annoying to do. But this plugin makes it easy, even on responsive designs.
Douglas Couto

Auto select file in solution explorer from its open tab in visual studio 2010 - Stack O... - 0 views

  •  
    "I don't know if you can do it on-demand, but you can enable the option "Track Active Item in Solution Explorer" (options->Projects and Solutions) which will always select the active tab item in the solution explorer."
Mark Ursino

scrollorama - 0 views

  •  
    The jQuery plugin for doing cool scrolly stuff
mgraber

ASP.NET View State Overview - 0 views

  •  
    "Encrypting View State Although MAC encoding helps prevent tampering with view state data, it does not prevent users from viewing the data. You can prevent people from viewing this data in two ways: by transmitting the page over SSL, and by encrypting the view state data. Requiring the page to be sent over SSL can help prevent data-packet sniffing and unauthorized data access by people who are not the intended recipients of the page. However, the user who requested the page can still view the view state data because SSL decrypts the page to display it in the browser. This is fine if you are not concerned about authorized users having access to view state data. However, in some cases, controls might use view state to store information that no users should have access to. For example, the page might contain a data-bound control that stores item identifiers (data keys) in view state. If those identifiers contain sensitive data, such as customer IDs, you should encrypt the view state data in addition to or instead of sending the page over SSL. To encrypt the data, set the page's ViewStateEncryptionMode property to true. If you store information in view state, you can use regular read and write techniques; the page handles all encryption and decryption for you. Encrypting view state data can affect the performance of your application. Therefore, do not use encryption unless you need it. Control State Encryption Controls that use control state can require that view state be encrypted by calling the RegisterRequiresViewStateEncryption method. If any control in the page requires that view state be encrypted, all view state in the page will be encrypted. Per-user View State Encoding If a Web site authenticates users, you can set the ViewStateUserKey property in the Page_Init event handler to associate the page's view state with a specific user. This helps prevent one-click attacks, in which a malicious user creates a valid, pre-filled Web page with view state from a pre
Douglas Couto

Unable to correctly set managedRuntimeVersion in MSDeploy package | Microsoft Connect - 0 views

  •  
    What I had to do is: In IIS, in the machine-name icon -->right panel: app pools Change the target framework from the default app pool, from v.2 to v.4
Mark Ursino

Sublayout Driven JavaScript In Sitecore - 1 views

  •  
    Very clever way to inject JS files at the sublayout level. Useful is we don't combine and minify JS, which we should do.
Mark Ursino

Sitecore Rocks - preview the future of Sitecore development - 2 views

  •  
    A new tool called Sitecore Rocks has been released in a CTP (Community Technology Preview) version - a early sneak peek. The tool, although a little rough around the edges, really shows a bright new future for Sitecore development, a future where we as developers do not need to muck about with browsers interfaces, only to connect our code, .NET pages and user controls into Sitecore. Now we can stay within in the tool we use and like, Visual Studio.
Douglas Couto

JAVASCRIPT - How to force a page refresh or reload in jQuery? - efreedom - 1 views

  •  
    "You don't need jQuery to do this. Embrace the power of JavaScript. window.location.reload()"
Mark Ursino

Making AJAX Applications Crawlable - 0 views

  •  
    This document outlines the steps that are necessary in order to make your AJAX application crawlable. Once you have fully understood each of these steps, it should not take you very long to actually make your application crawlable! However, you do need to understand each of the steps involved, so we recommend reading this guide in its entirety.
Mark Ursino

OpenJS Grid - 0 views

  •  
    OpenJS Grid is the easiest jQuery Grid ever. With very little work you can have a data grid that can do everything from sorting and searching to complex database queries. Best of all, its open source. So you can learn how it's all done.
Mark Ursino

HTML Email Boilerplate - 0 views

  •  
    This website and its sample code creates a template of sorts, absent of design or layout, that will help you avoid some of the major rendering problems with the most common email clients out there - Gmail, Outlook, Yahoo Mail, etc. While not plug and play (you know, you'll have to do some work ;-), it will provide some helpful examples and snippets that will keep your email design rendering as true-to-form as possible.
1 - 20 of 44 Next › Last »
Showing 20 items per page