Articles (2414) - Page 117

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.
 
Abhi2434
WPF Tutorial - A Beginning : 1 
Last updated on: 25 Sep 2010 04:01:13 PM by Abhi2434 | Views: 282601 | Category: WPF |
Votes: 16 | Rating: 4.31 out of 5
The article will guide through the basics of WPF programing with in-depth knowledge about the architecture and the working principles of WPF programs. The article finally creates a sample "Hello World" application to step you into new foundation. Even though I have started from the beginning of WPF, I marked it as Intermediate article, as I will also go indepth of all the techniques while discussing it. This is the first part of the WPF turorial. Stay tune for others.
Ankitwww
PowerShell – First Encounter 
Last updated on: 25 Sep 2010 06:31:38 AM by Ankitwww | Views: 11324 | Category: PowerShell |
A light introduction to PowerShell, the first ever .NET based scripting language
Pratikshagzb
New Features in WCF 4.0-Part 2 
Last updated on: 24 Sep 2010 07:51:13 PM by Pratikshagzb | Views: 17763 | Category: WCF |
Votes: 1 | Rating: 4 out of 5
This is Part 2 and concluding part of my Article New Features of WCF 4.0.
Pratikshagzb
New Features in WCF 4.0-Part 1 
Last updated on: 24 Sep 2010 03:30:56 AM by Pratikshagzb | Views: 18789 | Category: WCF |
Votes: 1 | Rating: 3 out of 5
This article describes the new Features of WCF 4.0
Ganeshji
Displaying clickable image in a GridView. 
Last updated on: 22 Sep 2010 01:27:06 PM by Ganeshji | Views: 25409 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
Here an image is displayed in each row of a GridView. And the most interesting point is these images are clickable. If one clicks on an image, he/she gets navigated to another page.
Vikas413
ASP.NET Security Vulnerability & SharePoint 
Last updated on: 22 Sep 2010 03:53:29 AM by Vikas413 | Views: 9704 | Category: SharePoint |
This post targets SharePoint vulnerability because of ASP.NET security threat. User can find probable threat and solution for the same.
Vikas413
ASP.NET Security Vulnerability and it’s solution 
Last updated on: 21 Sep 2010 10:00:36 PM by Vikas413 | Views: 7604 | Category: ASP.NET |
Votes: 1 | Rating: 5 out of 5
Vulnerability in ASP.NET Could Allow Information leak, how to solve it and link to good knowledge base post ;)
  • Vikas413
    Setup File Icons for all non Office files (Like PDF, mp3, mpeg, flv etc) 
    Last updated on: 20 Sep 2010 12:00:56 PM by Vikas413 | Views: 18223 | Category: SharePoint |
    This post will help non developer IT professionals to add new File type icons in SharePoint like PDF which is not supported by SharePoint by default.
    PandianS
    Implementing Full-Text Search on View 
    Last updated on: 18 Sep 2010 03:57:38 AM by PandianS | Views: 458494 | Category: Sql Server |
    Votes: 2 | Rating: 5 out of 5
    Full Text Index is used to perform queries to find-out the character data. These queries can include word or phrase searching. We can create a full-text index on a table or indexed view in the database. Only one full-text index is allowed per table or indexed view.
    Vikas413
    Use SPServices.js for Code less customizations in SharePoint Sites 
    Last updated on: 17 Sep 2010 01:13:37 PM by Vikas413 | Views: 21430 | Category: SharePoint |
    Votes: 1 | Rating: 5 out of 5
    This article provides a way to use JQuery and SPServices plugin to work with SharePoint sites to do some good smart GUI designs. Simple HTML designer or the developer who doesn't have C# knowledge can use this solution to achieve many things in SharePoint sites.
    Questpond
    3 ways of doing Optimistic Locking in .NET 
    Last updated on: 17 Sep 2010 04:52:06 AM by Questpond | Views: 15298 | Category: .NET Framework |
    In this article we will touch base 3 ways of doing optimistic locking i.e. Using ADO.NET dataset, SQL Server Timestamp check and old / new value check. So we will start this article with a small introduction to concurrency, discuss the 5 concurrency problems and then get down to the actual meat to understand how to implement optimistic locking using the 3 methodologies.
    Cp_raj
    Prototype object of javascript 
    Last updated on: 16 Sep 2010 09:59:05 PM by Cp_raj | Views: 8687 | Category: JavaScript |
    Prototype is used to define classes or objects in JavaScript. Classes or objects are building blocks of Object Oriented Programming.
    SheoNarayan
    Passing multiple IDs to the database from ASP.NET Application 
    Last updated on: 12 Sep 2010 06:01:58 PM by SheoNarayan | Views: 10389 | Category: ASP.NET |
    Votes: 3 | Rating: 4.33 out of 5
    Many a time we come into the situation where we need to pass ProductIds or ItemIds separated by comma from UI to the database. The first thing that comes in our mind is its easy by using IN keyword in the SQL Server but this is not as easy as it looks like. In this article, I have shown how to handle this situation easily in the client side itself.
    Nkaiseng
    ASP.NET Stringbuilder and DataTable 
    Last updated on: 08 Sep 2010 10:22:08 PM by Nkaiseng | Views: 39615 | Category: .NET Framework |
    Votes: 3 | Rating: 4 out of 5
    N.B, This article is for newbies. I remember my early days of my programming,The most battle i used to have was how to display my data on my form, yes i used GridViews, but find limitations when dealing with data.
    Abhi2434
    Use of Expression Trees in .NET for Lambda Decomposition 
    Last updated on: 05 Sep 2010 06:36:26 PM by Abhi2434 | Views: 19509 | Category: C# |
    Votes: 1 | Rating: 5 out of 5
    Expression Trees comes very handy when you want your lambda expression to be evaluated only when the object needs it to be compiled. Generally when we pass an annonymous delegate it builds the entire Expression Tree and C# is capable of building the expression at runtime. In this article I will explain how you could decompose an expression into an Expression Tree