DotNetJalps
Name: DotNetJalps
Score: 5.06
Last Seen: 2 days, 8 hours, 42 minutes ago
Member Since: 8 September, 2011
DotNetShoutout
atom rss
4
Shouts

Web 2.0 | Knockoutjs grid with Asp.net

published 324 days, 4 minutes ago posted by farooqkaiserfarooqkaiser 329 days, 8 hours, 53 minutes ago
Friday, June 29, 2012 3:52:43 PM GMT Sunday, June 24, 2012 7:04:10 AM GMT
Knockoutjs implements the Model-View-ViewModel pattern for JavaScript. This article explains how to use Knockoutjs�s plug-in simpleGrid with asp.net using HTTP handler. It can be used where dynamic UI is required such as adding/removing rows to the grid. (more)
category: Web Dev | clicked: 53 | comment | | source: www.fairnet.com
tags:
4
Shouts

SQL Server Common Table Expressions

published 324 days, 4 minutes ago posted by BlackWaspBlackWasp 329 days, 5 hours, 49 minutes ago
Friday, June 29, 2012 3:52:43 PM GMT Sunday, June 24, 2012 10:08:30 AM GMT
Avoiding temporary tables and cursors for queries can lead to scripts that are easier to understand and maintain, and that provide better performance than the cursor-based alternative. One option for complex queries is the use of common table expressions. (more)
category: Data | clicked: 27 | comment | | source: www.blackwasp.co.uk
tags:
5
Shouts

Cascading drop down with knockoutjs and ASP.NET MVC | dotnetExpertGuide.com

published 317 days, 2 minutes ago posted by nandipnandip 326 days, 22 hours, 26 minutes ago
Friday, July 06, 2012 3:55:19 PM GMT Tuesday, June 26, 2012 5:31:35 PM GMT
In this basic post, we will see how to build cascading drop down with the help of knockoutjs and ASP.NET MVC. However building cascading drop down with ASP.NET MVC is not a big deal and if we google it out, we will find plenty of solutions and post which demonstrate this. But here idea is to show how we can leverage knockoutjs to create UI which update itself (obviously based on some user interaction) without writing JavaScript which build UI or DOM element each and every time. Later on we can use same t... (more)
category: Web Dev | clicked: 43 | comment | | source: www.dotnetexpertguide.com
tags:
7
Shouts

Managing the Cloud from the Command Line - Scott Hanselman

published 324 days, 4 minutes ago posted by hilarycookhilarycook 332 days, 6 hours, 2 minutes ago
Friday, June 29, 2012 3:52:43 PM GMT Thursday, June 21, 2012 9:55:17 AM GMT
Turns out there are a mess of ways to access Azure from the command line - more than even I thought. There's a JSON-based Web API that these tools end up talking to. You could certainly call that API directly if you wanted, but the command line tools are damn fun... (more)
category: How To | clicked: 48 | comment | | source: www.hanselman.com
4
Shouts

Tuple in C# 4.0

posted by DotNetJalpsDotNetJalps 398 days, 7 hours, 48 minutes ago
Monday, April 16, 2012 8:08:57 AM GMT
C# 4.0 language includes a new feature called Tuple. Tuple provides us a way of grouping elements of different data type. That enables us to use it a lots places at practical world like we can store a coordinates of graphs etc. In C# 4.0 we can create Tuple with Create method. This Create method offer 8 overload like following. So you can group maximum 8 data types with a Tuple. Followings are overloads of a data type. Create(T1)- Which represents a tuple of size 1 Create(T1,T2)- Which represents a tup... (more)
category: Web Dev | clicked: 11 | comment | | source: www.dotnetjalps.com
tags:
4
Shouts

Delegates in c#

published 397 days, 19 hours, 31 minutes ago posted by DotNetJalpsDotNetJalps 402 days, 8 hours, 8 minutes ago
Monday, April 16, 2012 8:26:36 PM GMT Thursday, April 12, 2012 7:48:46 AM GMT
I have used delegates in my programming since C# 2.0. But I have seen there are lots of confusion going on with delegates so I have decided to blog about it. In this blog I will explain about delegate basics and use of delegates in C#. What is delegate? We can say a delegate is a type safe function pointer which holds methods reference in object. As per MSDN it's a type that references to a method. So you can assign more than one methods to delegates with same parameter and same return type. (more)
category: Web Dev | clicked: 31 | comment | | source: www.dotnetjalps.com
tags:
4
Shouts

Dynamically creating meta tags in asp.net mvc

published 397 days, 19 hours, 31 minutes ago posted by DotNetJalpsDotNetJalps 403 days, 8 hours, 23 minutes ago
Monday, April 16, 2012 8:26:36 PM GMT Wednesday, April 11, 2012 7:34:32 AM GMT
As we all know that Meta tag has very important roles in Search engine optimization and if we want to have out site listed with good ranking on search engines then we have to put meta tags. Before some time I have blogged about dynamically creating meta tags in asp.net 2.0/3.5 sites, in this blog post I am going to explain how we can create a meta tag dynamically very easily (more)
category: Web Dev | clicked: 26 | comment | | source: www.dotnetjalps.com
tags: