CodePaste Logo
New Snippet New Snippet Recent Snippets Recent Snippets My Snippets My Snippets Web Code Search Snippets Search
Sign inor Register
Format:
Recent snippets matching tags of class
XML
<configuration>
<httpHandlers>
   <add verb="*" path="*.jsp" type="HinoCentral.Website.AppCode.JSPHandler"/>
   <add verb="*" path="*.jspf" type="HinoCentral.Website.AppCode.JSPHandler"/>
</httpHandlers>
<system.webServer>
    <handlers>
      <add name="JSPHandler_jsp"  path="*.jsp" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv2.0,bitness64" />
      <add name="JSPHandler_jspf" path="*.jspf" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\Microsoft.NET\Framework64\v2.0.50727\aspnet_isapi.dll" resourceType="Unspecified" preCondition="classicMode,runtimeVersionv2.0,bitness64" />
    </handlers>
by Egli   October 25, 2011 @ 2:36pm
117 Views
no comments
 
$('input:checkbox').addClass(function (index, currentClass) {
    var addedClass;
 
    if (currentClass === "") {
        addedClass = "rTick";
    }
 
    return addedClass;
});
by Badz   June 29, 2011 @ 7:32pm
133 Views
no comments
 
//Class fields needed
private static int addFileFailures = 0;
 
//some other code
 
//addFile() Method
    public void addFile(File file)
            throws FileLimitReachedException, MemoryLimitReachedException, InvalidFileSizeException {
        
        //Increments the addFileFailures
by Licínio Mendes   May 31, 2011 @ 7:30am
106 Views
2 comments
 
//Document Ready
$(document).ready(function() {
 
});
 
//Add ie6 class
if ($.browser.msie && $.browser.version == "6.0") $('body').addClass("ie6");
 
 
//Jquery loaded check
by Arjan   April 03, 2010 @ 4:19am
313 Views
no comments
 
XML
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:sch="http://www.ascc.net/xml/schematron" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <xs:element name="HL7v2xConformanceProfile">
        <xs:annotation>
            <xs:documentation>An unambiguous specification of one or more standard HL7 messages that have been analyzed for a particular use case.  It prescribes a set of precise constraints upon one or more standard HL7 messages.</xs:documentation>
            <xs:appinfo>
                <sch:pattern name="Check for no optionality in Implementation profiles">
                    <sch:rule context="HL7v2xConformanceProfile">
                        <sch:report test="@ProfileType='Implementation' and count(HL7v2xStaticDef/descendant::*[@Usage='O'])!=0">May not have elements with a Usage of 'O' in an Implementation profile.</sch:report>
                    </sch:rule>
by Richard Kavanagh   March 05, 2010 @ 9:35am
410 Views
no comments
 
<?php
class Ragnarok 
{
 
    var $db;
    var $error;
 
    function add_userid($userid, $user_pass, $sex, $email) {
        global $mysql;
by Aummua   February 01, 2010 @ 8:06am
595 Views
2 comments
 
C++
/*Employee class which keeps track of the name, age and sallary of any person
The class needs to be as secure as possible and handle all possibilities of initialization

Laborator 1 - Programare Orientata pe Obiecte*/
 
#include <iostream>
 
using namespace std;
 
class angajat
by Parvulescu Cosmin   October 24, 2009 @ 2:10am
242 Views
no comments
 
brought to you by:
West Wind Techologies



If you find this site useful and use it frequently please consider making a donation to support this free service.
Donate