Skip to content

Instantly share code, notes, and snippets.

@erlhal
erlhal / README.md
Created December 23, 2014 07:37
test

README is empty

@erlhal
erlhal / new_gist_file
Created November 18, 2013 09:58
Javascript Url Objekt
function urlObject(options)
{
default_options = {'url':window.location.href,'unescape':true,'convert_num':true};
if(typeof options !== "object")
options = default_options;
else
{
for(var index in default_options)
@erlhal
erlhal / MaxRequestLength
Created June 13, 2013 12:07
Sette MaxRequestLength (f.eks til filopplasting)
<?xml version="1.0"?>
<configuration>
<system.web>
<httpRuntime
maxRequestLength="1048576"
executionTimeout="3600"
/>
<!-- Other contents goes here -->