Skip to main content

Home/ Agency Oasis Developers/ Group items tagged types

Rss Feed Group items tagged

Mark Ursino

Standard Type Casting and "as" Operator Conversions - 0 views

  •  
    Converting objects from one type to another is a common practice in software development. When dealing with this, it is important to understand the difference between standard casting and using the "as" operator to convert. In this article, Brendan explains this difference and when to use each type of conversion. His code snippets demonstrate the information he is explaining in the article.
Mark Ursino

Extended Email Action Sitecore Module - 0 views

  •  
    The Mail workflow action extends the standard Sitecore email action which is included with the default installation. It is distributed as a standard Sitecore package. The package includes the actual template for this action (the Extended email action), which inherits from the Sitecore Standard template. The extended email action template contains the following fields, grouped in the Parameters section: To - the recipient's email address; From - the sender's email address; Subject - the subject of the email (allows using Velocity templates); Message - the body of the email (allows using Velocity templates); Mail server - the email server you'd like to use for sending emails; *Type - (the same as the Type field of the Sitecore Action template).
Douglas Couto

Bipin Joshi.net | .Net & Coding - 0 views

  •  
    "Using HTML5 input types in ASP.NET Web Forms"
Mark Ursino

jQuery.suggest plugin - 0 views

  •  
    jQuery.suggest, a simple inline autosuggest jQuery plugin. It takes an array of terms as haystack and suggests the user the first item that matches what has been typed to this point. The suggestion is updated with every keystroke. Tab or Enter will accept the suggestion and update the input field accordingly.
Mark Ursino

Gridlover - 0 views

  •  
    Gridlover is the tool to establish a type system with modular scale and vertical rhythm to build upon.
Max Guyton

Could not load type System.ServiceModel.Activation.HttpModule | Developer OneNote - 0 views

  •  
    Loaded our internal dev site and received the titled error. Apparently this happens sometimes when running DotNet 3.0 or 3.5 WCF features on a DotNet 4.0 framework.
Mark Ursino

Sitecore Descriptive Tree List Field Type - 0 views

  •  
    Extends a treelist to show the hierarchy of parent items in case multiple items in the list have the same name
Mark Ursino

SQL Server 2008 Connection String Samples - 0 views

  •  
    Samples of every connection string type for every driver
mgraber

ASP.NET QuickStart Tutorials - 0 views

  • Securing Non-ASP.NET Files
  • ASP.NET handles requests for file extensions that are normally associated with ASP.NET, while IIS handles requests for all other file extensions. By default this means common file extensions such as .aspx and .asmx are processed by ASP.NET. This processing includes authentication and authorization to ASP.NET files. Sometimes though, a developer wants non-ASP.NET resources to be processed by ASP.NET. One reason for processing non-ASP.NET files through ASP.NET is to allow ASP.NET authentication and authorization to control access to these types of files. The combination of IIS6 on Windows Server 2003 and ASP.NET 2.0 provides the most flexibility for running the ASP.NET pipeline as part of processing a request for a non-ASP.NET resource. IIS6 includes support that allows ASP.NET 2.0 to perform authentication and authorization steps, and to then hand off the remainder of the processing of a non-ASP.NET resource back to IIS6. For example, it is possible to authenticate access to an ASP page using ASP.NET forms authentication, authorize access with ASP.NET's Url authorization and still allow the ASP ISAPI extension (asp.dll) to execute the ASP page. This support is possible because IIS6 introduced a new server support function for ISAPI extensions: HSE_REQ_EXEC_URL. Assume that a directory structure contains a mix of both ASP and ASP.NET files. The ASP.NET pages are used to log a user in with forms authentication, while the ASP pages represent the rest of the application. Using the IIS6 MMC, right-click on directory and create an application (this is the same step that is necessary when setting up a standard ASP.NET application). After an application has been created, click on the Configuration button that is located on the Directory property page. This will cause the Application Configuration dialog to be displayed. New to IIS6 is a feature called wildcard application mapping. The bottom of the Application Configuration dialog allows you to configure this feature. First determine the path for the ASP.NET ISAPI extension that processes ASP.NET files such as .aspx files. You can find this path by looking at the extensions that are listed in the Application Extensions list shown in the top half of the Application Configuration dialog. Click on the row in the list that maps the .aspx extension, and select the Edit button. In the dialog that pops up, highlight the text in the Executable textbox and copy it to the clipboard. Then cancel out of the dialog. Next, click the Insert button that is in the bottom half of the Application Configuration dialog. A dialog box titled Add/Edit Application Extension Mapping will be displayed. In the Executable text box, enter the path to the ASP.NET ISAPI extension that you copied to the clipboard earlier. The end result should look something like the screenshot below.
  • Click OK to close out all of the dialogs. Now whenever a request is made for any file, the request will first be processed by ASP.NET. If the web.config for your ASP.NET application has enabled forms authentication, an unauthenticated request for a .asp file will first trigger a redirect to the login page configured for forms authentication. After a user has successfully logged in, they will be redirected back to the original .asp page. When the now-authenticated user requests the .asp page, ASP.NET will first run through the FormsAuthenticationModule to verify that the forms authentication cookie exists and is still valid. If this check passes, ASP.NET will hand processing of the .asp page back to IIS6, at which point IIS6 will pass the request on to the ISAPI extension that normally process .asp pages. In this case the extension is asp.dll and the ASP page will then run to completion. The reason ASP.NET will pass the request back to IIS6 is that non-ASP.NET resources will fall through the list of configured <httpHandlers> to the following entry: <add path="*" verb="GET,HEAD,POST" type="System.Web.DefaultHttpHandler" validate="True" /> The DefaultHttpHandler is responsible for handing requests back to IIS6 for further processing.
  •  
    "Securing Non-ASP.NET Files"
Mark Ursino

Typetester - Compare fonts for the screen - 0 views

  •  
    compare screen type
Mark Ursino

LiveValidation - 0 views

  •  
    Validation as you type
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.
Mark Ursino

IE NetRenderer - Browser Compatibility Check - 1 views

  •  
    IE NetRenderer allows you to check how a website is rendered by Internet Explorer 9, 8, 7, 6 or 5.5, as seen from a high speed datacenter located in Germany. Just type in a URL in the field above and try it out - it's free!
Mark Ursino

Data Definition Reference - 1 views

  •  
    Lists all of the field types for templates
Mark Ursino

jQuery ComboGrid Plugin - 0 views

  •  
    Combogrid, like autocomplete, when added to an input field, enables users to quickly find and select from a pre-populated list of values as they type, but in a tabular and paginated manner. Combogrid provides keyboard navigation support for selecting an item
Mark Ursino

rlightbox - a jQuery UI mediabox - 0 views

  •  
    rlightbox is a jQuery UI mediabox that can display many types of content such as images, YouTube videos and Vimeo content. It has many features and is highly customizable.
Mark Ursino

Firefinder for Firebug - 0 views

  •  
    Firefinder is an add-on to Firebug, to help find HTML elements matching chosen CSS selector(s) or XPath expression. Type in desired filter and view the results.
Mark Ursino

Closure Compiler - Google Code - 0 views

  •  
    The Closure Compiler is a tool for making JavaScript download and run faster. It is a true compiler for JavaScript. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript. It parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what's left. It also checks syntax, variable references, and types, and warns about common JavaScript pitfalls.
1 - 20 of 27 Next ›
Showing 20 items per page