Skip to content

Instantly share code, notes, and snippets.

@pirvudoru
pirvudoru / index.html
Created February 10, 2016 18:13
Submit Inline Click Handler
<html>
<head>
</head>
<body>
<input type="submit" value="Submit" id="button1" name="button1" onclick="myFunction()" />
<script>
function myFunction() { window.location.href = "page2/test/x.html" }
</script>
@pirvudoru
pirvudoru / GeneratedUniversalProviderSchema
Created September 13, 2013 14:37
SQL script create Universal Providers schema
/****** Object: Table [dbo].[Applications] Script Date: 09/13/2013 17:35:13 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Applications](
[ApplicationName] [nvarchar](235) NOT NULL,
[ApplicationId] [uniqueidentifier] NOT NULL,
[Description] [nvarchar](256) NULL,
PRIMARY KEY CLUSTERED