tactics

Stories kicked by tactics

Localize the jQuery DatePicker Control in an ASP.NET Page (www.dotnetcurry.com)

submitted by paroaryaparoarya(285) 2 years ago

The jQuery UI DatePicker widget is highly configurable and full of features, and I use it in my applications whenever I can. In this article, we will see how to localize the DatePicker based on the value selected from an ASP.NET DropDownList. read more...

add a comment |category: |Views: 226

tags: another

Quickly Trim all your model's string properties(markkemper1.blogspot.com)

submitted by mkempermkemper(518) 2 years ago

Short code snippet to save time when Trimming your string properties. read more...

add a comment |category: |Views: 18

tags: another

amCharts Quick Charts for WPF & Silverlight - Open Source Charts(wpf.amcharts.com)

submitted by ailonailon(1335) 2 years ago

amCharts has released a feature complete version of Quick Charts for WPF & Silverlight. Quick Charts support line, column, area and pie charts. It's easy to use, fast, small and absolutely free under Ms-PL license. read more...

add a comment |category: |Views: 295

tags: another

A few thoughts on jQuery templating with jQuery.tmpl(encosia.com)

submitted by gt1329agt1329a(7849) 2 years ago

Some thoughts on the current state of the jQuery.tmpl plugin, and suggestions for making it better. read more...

add a comment |category: |Views: 413

tags: another

Hosting WCF 4.0 Service on IIS 7.5 with SSL(www.dotnetcurry.com)

submitted by mopenmopen(3596) 2 years ago

In this article, we will see how to host a WCF service on IIS 7.5 with SSL. read more...

add a comment |category: |Views: 118

tags: another

How to use Google Data API in ASP.NET MVC. Part 1 - Google Analytics(mahdi.mp)

submitted by sharplifesharplife(4570) 2 years, 1 month ago

This article shows you how to use Google Data API to interact with Google Analytics data and show your website's visitors statistics on your website. read more...

add a comment |category: |Views: 362

tags: another

Cancelling Tasks in .NET 4.0 (www.dotnetcurry.com)

submitted by mopenmopen(3596) 2 years, 1 month ago

In one of the previous articles Parallel Tasks in .NET 4.0, we used the Task(TResult) class which represents an asynchronous operation that can return a value. In this article, we will see how to cancel a task/operation. read more...

add a comment |category: |Views: 20

tags: another

The curious case of "Stop running script" error & jQuery(www.novogeek.com)

submitted by novogeeknovogeek(235) 2 years, 1 month ago

In most of the thick client web applications, heavy use of JavaScript with lead to "Stop running script" error, which is due to drastic performance degradation. This article points out few such scenarios for jQuery developers. read more...

add a comment |category: |Views: 254

tags: another

Building an RSS Feed in ASP.NET MVC(www.codecapers.com)

submitted by mceranskimceranski(345) 2 years, 1 month ago

When building a website it is common to expose an RSS/ATOM feed for your content. Feeds serve two main purposes. The first, is that it allows other sites to consume your content for syndication. For example if you write .NET articles, there may be other partner sites that subscribe to your feed and dynamically pull in your content. Secondly, feeds allow users to subscribe to your site so they can get notifications when your content is updated. This is especially relevant for sites with irregular content updates such as a personal blog. In the .NET 3.5 framework there is a namespace titled System.ServiceModel.Syndication which very few people seem to know about. The classes contained in this library allows you to create and consume RSS feeds with minimal effort. I recently created a feed for my WeBlog application. I was astonished about how little time it took to implement an RSS Feed. Instead of weighing you down with all the details...I'll let the code do the talking.... read more...

add a comment |category: |Views: 246

tags: another

Using CASE Expression in SQL Server to create a Computed Column (www.sqlservercurry.com)

submitted by mopenmopen(3596) 2 years, 1 month ago

Here’s a practical and interesting example of using CASE expression in SQL Server. I am creating a computed column using CASE expression where I will automatically calculate the value of a column based on the value of other columns read more...

add a comment |category: |Views: 205

tags: another

Parallel Tasks in .NET 4.0(www.dotnetcurry.com)

submitted by mopenmopen(3596) 2 years, 1 month ago

The Parallel class found in the System.Threading.Tasks namespace "provides library-based data parallel replacements for common operations such as for loops, for each loops, and execution of a set of statements". In this article, we will use the Invoke method of the Parallel class to call multiple methods, possibly in parallel. read more...

add a comment |category: |Views: 430

tags: another

Some useful Addins for SQL Server Management Studio 2005 and 2008 (www.sqlservercurry.com)

submitted by mopenmopen(3596) 2 years, 1 month ago

Here are some useful addins I found for SSMS 2005/2008 on CodePlex and thought of sharing it with my readers. read more...

add a comment |category: |Views: 686

tags: another

Editable MVC Routes (Apache Style)(www.coderjournal.com)

submitted by zigamorphzigamorph(3319) 2 years, 2 months ago

After remembering a post by Phil Haack about Editable MVC Routes. By merging together Routing and Rewriting in the same process, and making the routes as editable as the rewriter rules I might be able make the differences or at least the benefits of having both a little more clear, because developers could play with both in real time and start to connect in their mind when one is more useful than the other. So I started with the latest release of my URL Rewriter and created a contrib project on GitHub that extended the Apache support in the rewriter to also include System.Web.Routing. The syntax looks similar to the Apache mod_rewrite but specific for routes. read more...

add a comment |category: |Views: 192

tags: another

.NET regex and Cyrillic (unicode)(dotnetintheshell.blogspot.com)

submitted by tacticstactics(15) 2 years, 2 months ago

Some days ago I had to validate a Cyrillic text using regex class. Of course there is no way to do it using “[а-зА-З]{3}” (for example) . Good thing is that .net supports Unicode in it’s regex engine. read more...

add a comment |category: |Views: 40

tags: another

Return Multiple Objects Using ASP.NET MVC'S JsonResult Class(www.dotnetcurry.com)

submitted by malcolmsmalcolms(1156) 2 years, 2 months ago

The following article demonstrates how to return multiple objects in ASP.NET MVC using the JsonResult class. read more...

3 comments |category: |Views: 464

tags: another

Disable All or Selective Controls on a Page using jQuery (www.devcurry.com)

submitted by mopenmopen(3596) 2 years, 2 months ago

Disabling controls on a Page using jQuery is a cakewalk, thanks to the wonderful Selector API. Here’s an example. read more...

add a comment |category: |Views: 295

tags: another