Skip to content

Instantly share code, notes, and snippets.

View dancrowley303's full-sized avatar

Dan Crowley dancrowley303

View GitHub Profile
<html>
<head>
<style type="text/css">
* { visibility: hidden }
h1 { visibility: visible }
</style>
</head>
<body>
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#container
{
width: 900px;
overflow: hidden;
padding: 0;
background: #000;
#container
{
width: 900px;
padding: 0;
background: #000;
}
#content
{
background: #F00;
<html>
<head>
<link rel="stylesheet" type="text/css" href="css_floats_content_and_nav.css" />
</head>
<body>
<div id="container">
<div id="content">
float1<br>float1<br>float1<br>
float1<br>float1<br>float1<br>
routes.IgnoreRoute("{*favicon}", new { favicon = @"(.*/)?favicon.([iI][cC][oO]|[gG][iI][fF])(/.*)?" });
namespace Utilities
{
public class QueryStringBuilder : Dictionary<string, string>
{
public string Generate()
{
if (Count == 0) return string.Empty;
return "?" + string.Join("&", GenerateSegments());
}