bliek

Stories kicked by bliek

The Difference Between int.Parse() and System.Convert.ToInt32()(davidturvey.com)

submitted by davidtdavidt(45) 2 years, 7 months ago

A summary of the differences between int.Parse() and System.Convert.ToInt32() read more...

add a comment |category: |Views: 23

tags: another

Paging and Sorting ListViews with ASP.NET MVC and jQuery(c-sharpcorner.com)

submitted by saumya321saumya321(775) 2 years, 7 months ago

This article provides a simple example of using jQuery along with the jQuery tablesorter and tablesorter.pager plug-ins to provide sorting and paging support for a listview within the context of an ASP.NET MVC application. JQuery has partnered with Microsoft and is now integrated within the IDE to include the availability of intellisense support. read more...

add a comment |category: |Views: 473

tags: another

ASP.NET MVC Extension Methods of UrlHelper(helios.ca)

submitted by helioshelios(85) 2 years, 8 months ago

I think this is kind of obvious, but I guess it might not be for everyone because I’ve seen some code where people do not use this! URL Helpers are really easy to setup, it takes only a few minutes and will probably save you a lot of massive Search & Replace in the future! read more...

add a comment |category: |Views: 65

tags: another

delete duplicate records in sql server table(logiclabz.com)

submitted by webtipswebtips(265) 2 years, 9 months ago

delete duplicate records in sql server table with or without primary key read more...

add a comment |category: |Views: 45

tags: another

Free ASP.NET MVC eBook Tutorial - ScottGu(weblogs.asp.net)

submitted by beckelmwbeckelmw(2755) 3 years, 2 months ago

There has been a lot of excitement in the community about the new ASP.NET MVC framework that is about to ship (literally any day now – announcement coming soon). As with anything new, people are also asking for more tutorials/samples/documentation that cover how to get started and build applications with it. Over the last few months I’ve been helping to contribute to an ASP.NET MVC book that Scott Hanselman, Rob Conery, and Phil Haack have been writing for Wrox. The book is now in production, and will be available to buy in stores soon read more...

2 comments |category: |Views: 802

tags: another

Beyond SoundEx - Fuzzy Searching in MS SQL Server(anastasiosyal.com)

submitted by AnastasiosyalAnastasiosyal(960) 3 years, 4 months ago

In this post see how you can perform fuzzy deduping operations and fuzzy string matching by bringing the power of an open source string metric library (SimMetrics) into sql server read more...

1 comment |category: |Views: 579

tags: another

New ASP.NET Charting Control(weblogs.asp.net)

submitted by craigtpcraigtp(683) 3 years, 6 months ago

From ScottGu's blog. Brand new, Free, ASP.NET 3.5 chart control. It looks very nice! read more...

1 comment |category: |Views: 890

tags: another

Update on Silverlight 2 - and a glimpse of Silverlight 3 (weblogs.asp.net)

submitted by simonechsimonech(10.1k) 3 years, 6 months ago

ScottGu unveils the plans for Silverlight 3, shipping next year read more...

1 comment |category: |Views: 350

tags: another

Essential Visual Studio Tips & Tricks that Every Developer Should Know(weblogs.asp.net)

submitted by swaltherswalther(975) 3 years, 7 months ago

In this blog entry, Stephen Walther lists the essential tips and tricks that every developer who uses Visual Studio 2008 should know. The list is kept brief. The list focuses on only those tips and tricks that can be used on a daily basis. Almost all of these tips and tricks are just as useful regardless of whether you are building an ASP.NET Web Forms or ASP.NET MVC application. read more...

add a comment |category: |Views: 845

tags: another

Silverlight 2 Released (weblogs.asp.net)

submitted by ChadMoranChadMoran(535) 3 years, 7 months ago

Today we shipped the final release of Silverlight 2. You can download Silverlight 2, as well the Visual Studio 2008 and Expression Blend 2 tool support to target it, read more...

3 comments |category: |Views: 260

tags: another

Is it important to write good code? (weblogs.asp.net)

submitted by JanVanRyswyckJanVanRyswyck(2724) 3 years, 7 months ago

Its not only important, its vital. read more...

3 comments |category: |Views: 488

tags: another

SQL SERVER - Guidelines and Coding Standards Complete List Download(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 3 years, 7 months ago

Coding standards and guidelines are very important for any developer on the path of successful career. A coding standard is a set of guidelines, rules and regulations on how to write code. Coding standards should be flexible enough or should take care of the situation where they should not prevent best practices for coding. They are basically the guidelines that one should follow for better understanding. The concept behind implementing coding standards and guidelines, is that the consistency and uniformity in programming so that if multiple people are working on the same code, it becomes easier to communicate, share with or understand each other’s work. With the goal of promoting good coding standards and guidelines I have created document which can guide developers. read more...

3 comments |category: |Views: 524

tags: another

Sending Email in a Development Environment without an SMTP Server(blog.donnfelker.com)

submitted by BognitBognit(2125) 3 years, 8 months ago

Very handy... I'm forever looking this stuff up :-| read more...

11 comments |category: |Views: 1120

tags: another

Dear Alt.Net Developers: Stop blaming Microsoft and WebForms for crea(blog.theaccidentalgeek.com)

submitted by mjeatonmjeaton(724) 3 years, 8 months ago

I am responsible for every website I create. If I create a site or application that is unmaintainable or that has poorly formed HTML or doesn’t render well in all browsers, that is my fault. I chose my development tools/framework, or my employer, who I choose to work for, chose the development tools/framework. Either way, it is my responsibility, as a professional, to do my utmost to create the best possible application that is within my capability to create. read more...

add a comment |category: |Views: 353

tags: another

Scrum Explained in 5 Minutes(softhouse.se)

submitted by powerrushpowerrush(3873) 3 years, 11 months ago

PDF entitled "Scrum in Five Minutes" from http://www.softhouse.se/ read more...

add a comment |category: |Views: 1011

tags: another

enum to friendly string extension method(objectreference.net)

submitted by Vort3XVort3X(1335) 3 years, 11 months ago

We use enums quite extensively in our application as they are a great for representing integral values in a strongly typed way using symbolic names. The enum names are not very friendly to the user and I recently read a some good articles which tried to solve this problem. However, I think i've found a better solution to this problem using extension methods. read more...

add a comment |category: |Views: 382

tags: another