Thursday, April 5, 2012

How to sovle "execution of the asp page caused the response buffer to exceed its configured limit." in Classic ASP

Solution#1:
Put this line on the top of page
<%Response.Buffer = False%>


Solution#2:
Limit your record number from database

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/