Articles (2414) - Page 47

Articles posted by registered members of DotNetFunda.com. You can also post an article and win monthly prizes as well as gain community credit points.

2414 records found.
 
Sourav.Kayal
How data store in localStorage and sessionStorage ? 
Last updated on: 04 Nov 2013 01:06:24 PM by Sourav.Kayal | Views: 14011 | Category: HTML 5 |
Store data in localStorage and sessionStorage and access using key
Sourav.Kayal
localStorage and sessionStorage in HTML5 
Last updated on: 04 Nov 2013 09:54:41 AM by Sourav.Kayal | Views: 7632 | Category: HTML 5 |
How to store data in localStorage and sessionStorage
Rama Sagar
Bindings in knockout Part 2 
Last updated on: 30 Oct 2013 01:29:13 PM by Rama Sagar | Views: 2974 | Category: ASP.NET |
Knockout is a standalone JavaScript implementation of the Model-View-ViewModel pattern with templates.For more info http://en.wikipedia.org/wiki/KnockoutJS
Sourav.Kayal
Pass C# class as a parameter of another class 
Last updated on: 30 Oct 2013 11:43:44 AM by Sourav.Kayal | Views: 47312 | Category: C# |
Votes: 1 | Rating: 4 out of 5
How to pass one class as a parameter of another class
Rama Sagar
Dependency property in WPF 
Last updated on: 30 Oct 2013 02:51:35 AM by Rama Sagar | Views: 6521 | Category: WPF |
A property that is backed by the WPF property system is known as a dependency property.
Sourav.Kayal
Understand unsafe block and low level programming in C# 
Last updated on: 29 Oct 2013 10:54:26 PM by Sourav.Kayal | Views: 7573 | Category: C# |
How to write low level code within "unsafe" block
Rama Sagar
Form Field bindings in Knockoutjs 
Last updated on: 29 Oct 2013 02:20:55 PM by Rama Sagar | Views: 4531 | Category: ASP.NET |
Knockout is a standalone JavaScript implementation of the Model-View-ViewModel pattern with templates.For more info http://en.wikipedia.org/wiki/KnockoutJS
  • Sourav.Kayal
    Understand abstract and sealed class in C# 
    Last updated on: 29 Oct 2013 12:50:31 PM by Sourav.Kayal | Views: 11091 | Category: C# |
    How to use abstract and sealed class in C# application
    Rama Sagar
    Bindings in Knockout Part 1 
    Last updated on: 29 Oct 2013 11:38:57 AM by Rama Sagar | Views: 7116 | Category: ASP.NET |
    Knockout is a standalone JavaScript implementation of the Model-View-ViewModel pattern with templates.For more info http://en.wikipedia.org/wiki/KnockoutJS
    Rama Sagar
    Improve Application Performance using HTTP Handler 
    Last updated on: 29 Oct 2013 01:53:09 AM by Rama Sagar | Views: 11610 | Category: ASP.NET |
    An ASP.NET HTTP handler is the process that runs in response to a request that is made to an ASP.NET Web application. The most common handler is an ASP.NET page handler that processes .aspx files. When users request an .aspx file, the request is processed by the page handler.The ASP.NET page handler is only one type of handler. ASP.NET includes several other built-in handlers such as the Web service handler for .asmx files.
    Sourav.Kayal
    Understand “yield” keyword in C# 
    Last updated on: 28 Oct 2013 11:20:30 PM by Sourav.Kayal | Views: 13024 | Category: C# |
    How to use "yield" keyword in C#
    Sourav.Kayal
    Understand “readonly” modifier in C# 
    Last updated on: 28 Oct 2013 10:35:21 PM by Sourav.Kayal | Views: 6302 | Category: C# |
    How to use "readonly" modifier in C#
    Rama Sagar
    Usage of Icommand in MVVM WPF 
    Last updated on: 28 Oct 2013 01:41:02 PM by Rama Sagar | Views: 5911 | Category: WPF |
    ICommand Interface in WPF is commonly used for binding. ICommand Interface is implemented in the ViewModel and are exposed to the view controls.
    Rama Sagar
    Using MVVM Pattern in WPF 
    Last updated on: 28 Oct 2013 01:20:34 PM by Rama Sagar | Views: 28470 | Category: WPF |
    MVVM prescribes separating the nonvisual classes that encapsulate interaction logic, business logic and data from the visual classes that actually render things to the screen. This separation makes the code easier to maintain: first, it prevents the UI from becoming a monolithic class with display controls, interaction logic and business logic all stuffed in side by side; and second, it enables you to automate the testing of interaction logic and user interface mappings instead of relying on expensive, unreliable manual testing..
    Sourav.Kayal
    Difference between data type of C# and data type .NET framework 
    Last updated on: 27 Oct 2013 10:58:08 PM by Sourav.Kayal | Views: 4652 | Category: C# |
    In this article we will see how data type of C# converts into data type of .NET