Wednesday, April 4, 2012

How to put multiple div next to each other by CSS?

        .oneDiv
        {
            width: 200px;
            height: 200px;
            display:inline-table;
        }

<div>
<div class="oneDiv">1</div>
<div class="oneDiv">2</div>
<div class="oneDiv">3</div>
</div>

Making your ASP.NET Web API’s secure

a ASP.NET Web API that requires requests to be under the HTTPS protocol, requires an encrypted authorization token and requires traffic to only come from a predefined population of IP addresses.

http://codebetter.com/johnvpetersen/2012/04/02/making-your-asp-net-web-apis-secure/