Popular Posts

Friday, February 28, 2014

Tuesday, February 25, 2014

Regular expressions

http://www.codeproject.com/Articles/206330/Learning-REGEX-regular-expression-in-the-most-ea-2

Ienumerable vs iquerryable

http://www.codeproject.com/Articles/732425/IEnumerable-Vs-IQueryable

Tuesday, February 11, 2014

Less - enables to use variable and more inside css

http://www.codeproject.com/Articles/724246/Introduction-to-LESS-an-easier-way-to-create-CSS-s

Disable browser caching from code

http://www.codeproject.com/Articles/724302/Prevent-browser-caching-of-css-and-javascript-file

Mocking session using mock

http://www.codeproject.com/Articles/724300/Mocking-Session-State-in-an-ASP-NET-MVC4-Unit-Test

Monday, February 10, 2014

Serving html from desktop using katana

http://odetocode.com/blogs/scott/archive/2014/02/10/building-a-simple-file-server-with-owin-and-katana.aspx

Custom Excel Toolbars

http://msdn.microsoft.com/en-us/library/office/ee767705(v=office.14).aspx




Friday, February 7, 2014

ASP.NET MVC TempData Extension Methods - DONN FELKER

ASP.NET MVC TempData Extension Methods - DONN FELKER: "public static class TempDataExtensions
{
    public static void Put(this TempDataDictionary tempData, T value) where T : class
    {
        tempData[typeof(T).FullName] = value;
    }
 
    public static void Put(this TempDataDictionary tempData, string key, T value) where T : class
    {
        tempData[typeof(T).FullName + key] = value;
    }
 
    public static T Get(this TempDataDictionary tempData) where T : class
    {
        object o;
        tempData.TryGetValue(typeof(T).FullName, out o);
        return o == null ? null : (T)o;
    }
 
    public static T Get(this TempDataDictionary tempData, string key) where T : class
    {
        object o;
        tempData.TryGetValue(typeof(T).FullName + key, out o);
        return o == null ? null : (T)o;
    }
}"



'via Blog this'

MvcPaging let the partialview updates its own content using ajax

<script>
 
    $(function () {
        $('#Pager a').click(function () {
            $.ajax({
                url: this.href,
                type: 'GET',
                cache: false,
                success: function (result) {
                    $('#grid-list').html(result);
                }
            });
            return false;
        });
    });
 
</script>
 

Selenium the best test web application testing tool

Downloads:



enables to test the web application by mocking the browsers -> mock or ???



'via Blog this'

SQL CLR Research

Good one -> http://technet.microsoft.com/en-us/library/ms131103.aspx



http://www.codeproject.com/Articles/37298/CLR-Stored-Procedure-and-Creating-It-Step-by-Step



This is not for the web reference -> http://nielsb.wordpress.com/sqlclrwcf/






Using paging in partial view, asp.net mvc - Stack Overflow

Using paging in partial view, asp.net mvc - Stack Overflow:



https://github.com/martijnboland/MvcPaging

paging using Ajax -> http://demo.taiga.nl/MvcPaging/Paging/IndexAjax



issue with paging and custom ajax

http://stackoverflow.com/questions/18822352/using-paging-in-partial-view-asp-net-mvc



'via Blog this'

Wednesday, February 5, 2014