jQuery tip: Add an element as hidden and show on click.
If you want to add an element initially as hidden, just use CSS display: none. In the onclick event, use jQuery to show the element. TIP: Don’t use CSS visibility: hidden, because this will
If you want to add an element initially as hidden, just use CSS display: none. In the onclick event, use jQuery to show the element. TIP: Don’t use CSS visibility: hidden, because this will
When I closed all documents (tabs), closed en reopened Microsoft Visual Studio 2012 some closed documents were reopened again. After deleting the *.suo files in the same folder as the *.sln file, this problem was
Below you will find the t-sql code needed to generate de SQL Server SimpleMembershipProvider tables. set ansi_nulls on go set quoted_identifier on go if object_id('dbo.webpages_Membership') is null begin create table dbo.webpages_Membership (
If you are using the SimpleMembershipProvider for FormAuthentication in a ASP .NET MVC4 / Web Api project, the following PowerShell / C# code can be used to create and delete users and roles. Create an
Just go to the Apple store on your iPhone and download the Touralot app. This app is written in HTML 5 CSS3 and uses in PhoneGap to create a Apple store compatible app package.
using Microsoft.VisualStudio.TestTools.UnitTesting; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text.RegularExpressions; namespace Research.Rli.Tests { [TestClass] public class ResearchTester { [TestMethod] public void Test() { string json = @"{""date"":""2013-04-10T14:52:43.207Z""}"; Dto dto = JsonConvert.DeserializeObject<Dto>(json);
As of 5-mrt-2013, Microsoft Visual Studio 2012 supports SSIS projects by installing Microsoft SQL Server Data Tools – Business Intelligence for Visual Studio 2012 You can download Microsoft SQL Server Data Tools – Business
if you want to drop all stored procedures not belonging to the dbo schema from a SQL Server database, you van use the following select statement to generate a list that can be executed to
If you want to left pad a string in T-SQL in Microsoft SQL Server 2012, you can use the format function: To get the current hour padded with, zeros use: declare @CurrentDateTime datetime = '2013-04-03
I was getting the error: "Arithmetic overflow error converting IDENTITY to data type int", when inserting a record in a table with a identity column. The max id of this table was 45448, this is