spootwo

Stories kicked by spootwo

60+ .Net libraries every developer should know about(blog.webdistortion.com)

submitted by squiggssquiggs(585) 2 years, 3 months ago

Every good developer knows never to re-invent the wheel, especially if there is software out there that has been tested by others, and has an established track record. As a developer using the .NET framework I’ve found some of these libraries invaluable, so I’m sharing them for some of the other dev’s out there with a brief outline of how to use. read more...

2 comments |category: |Views: 2605

tags: another

Serialize only Selected Elements of a Form and Submit it using jQuery(www.dotnetcurry.com)

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

This article will demonstrate how to submit form data in the background without using ASP.NET AJAX and at the same time prevent some form fields from being submitted. read more...

4 comments |category: |Views: 181

tags: another

Handling image uploads with Asp.Net Mvc (mattias-jakobsson.net)

submitted by JakobssonJakobsson(485) 2 years, 6 months ago

A very common taks in web development is uploading images. This isn't realy a hard task in it self, but it can be pretty frustrating to write the same code over and over again even if its only a few lines. read more...

add a comment |category: |Views: 316

tags: another

ASP.NET MVC Calendar component(weblogs.asp.net)

submitted by gpeipmangpeipman(3145) 2 years, 10 months ago

I am writing simple ASP.NET MVC system that I plan to publish with source code pretty soon. I needed some simple calendar component that doesn’t require ASP.NET server-side form to work. I found different JavaScript based calendars and only one pretty old calendar that was specially written for ASP.NET MVC. I updated it and here is the source and binary downloads for Visual Studio 2008 and ASP.NET MVC 1.0. read more...

add a comment |category: |Views: 250

tags: another

Get Countries Name in .Net(aghausman.net)

submitted by aghausmanaghausman(110) 2 years, 10 months ago

In this post, I will explain you how can we get the countries name filled in any collection using .net without using any database. It is a regular task, which we all as developers did some past day but the difference is we used database table or xml file to hold the country names. But .net framework provide us with all the countries information in Globalization namespace. read more...

2 comments |category: |Views: 489

tags: another

A Degradable jQuery AJAX Email Form for ASP.NET MVC(mikesdotnetting.com)

submitted by reperioreperio(405) 2 years, 11 months ago

Pretty much every web site on the Internet features a form for users to provide feedback via email to site owners. Migrating to ASP.NET MVC requires a slightly different approach to that used by Web Forms development, so this article looks at one way to implement a web site contact form using the MVC framework and jQuery that degrades nicely. AJAX functionality is said to be "degradable" if a way is provided for the process to work, even though users don't have Javascript available to them. read more...

1 comment |category: |Views: 313

tags: another

More ASP.NET MVC Best Practices(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 3 years ago

In this post, I’ll share some of the best practices and guidelines which I have come across while developing ASP.NET MVC web applications. I will not cover all best practices that are available, instead add some specific things that have not been mentioned in any blog post out there. Existing best practices can be found on Kazi Manzur Rashid’s blog and Simone Chiaretta’s blog. read more...

add a comment |category: |Views: 1837

tags: another

What ASP.NET Developers Should Know About jQuery (visitmix.com)

submitted by mosessaurmosessaur(5424) 3 years ago

It’s hard to believe that JavaScript is already well over a decade old. Often relegated to marginal tasks in its early years, JavaScript has grown to become a pillar of modern web development. With the current popularity of DHTML and AJAX, it can be difficult to find a site that doesn’t use JavaScript anymore. One of the driving forces behind JavaScript’s newfound popularity is a proliferation of JavaScript frameworks, such as jQuery. Why? Though JavaScript itself is a great programming language, t... read more...

add a comment |category: |Views: 570

tags: another

My New Favorite Tool: OneNote(aspectdatasystems.com)

submitted by BoydskiBoydski(101) 3 years ago

Review of Microsoft OneNote 2007 relating to the developer. read more...

3 comments |category: |Views: 633

tags: another

Linq Vs Stored Procedures Part 1 (Inserts)(codingsmarter.com)

submitted by AKatawaziAKatawazi(45) 3 years, 1 month ago

A head to head comparison of the two with real results. In this part we do a comparison between SPROCs and LINQ to see which one is able to insert data into several different database tables the fastest. read more...

add a comment |category: |Views: 58

tags: another

I Spose I’ll Just Say It: You Should Learn MVC(blog.wekeroad.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

I’m never shy about my opinion – why start now? I’ve been reading a lot of posts flying about on whether you should learn MVC, Summing up the differences so you can decide when to use it, I even found a post that offers a scorecard approach! I remember reading the latter post thinking to myself “how can you possibly put a number next to Testability? And why it is only 2 more points than “using a RAD designer”? Isn’t this missing the entire point? read more...

add a comment |category: |Views: 370

tags: another

Silverlight Animation Part II: Sprites(blogs.msdn.com)

submitted by CharlieCalvertCharlieCalvert(7875) 3 years, 1 month ago

In the previous post in this series, you learned how to create a simple animation with Silverlight. The next step is to learn how to create animated objects called sprites. This post will also explain how to ensure that their movement is restricted to a bounded area, as shown below in Application 1. Logic like this can be used in simple games, or in programs that want to use animation to capture or focus the user’s attention. read more...

add a comment |category: |Views: 60

tags: another

Create a simple menu in asp.net mvc(nablasoft.com)

submitted by alkampferalkampfer(1873) 3 years, 1 month ago

Simple code to create a menu in asp.net mvc using a master page and a master controller. read more...

add a comment |category: |Views: 528

tags: another

Just say No! to C# Regions(extractmethod.wordpress.com)

submitted by FlukeFanFlukeFan(279) 3 years, 1 month ago

You need a language construct so that your IDE can help you hide your big messy code block from you (because it’s just so hideous, you don’t even want to look at it anymore)? read more...

2 comments |category: |Views: 813

tags: another

Using jQuery Grid With ASP.NET MVC(haacked.com)

submitted by crpietschmanncrpietschmann(11.3k) 3 years, 1 month ago

Continuing in my pseudo-series of posts based on my ASP.NET MVC Ninjas on Fire Black Belt Tips Presentation at Mix (go watch it!), this post covers a demo I did not show because I ran out of time. It was a demo I held in my back pocket just in case I went too fast and needed one more demo. A common scenario when building web user interfaces is providing a pageable and sortable grid of data. Even better if it uses AJAX to make it more responsive and snazzy. Since ASP.NET MVC includes jQuery, I figured it’d be fun to use a jQuery plugin for this demo, so I chose jQuery Grid. read more...

add a comment |category: |Views: 1279

tags: another

File Uploads in ASP.NET MVC 1.0 RTM(codethinked.com)

submitted by justin_etheredgejustin_etheredge(8539) 3 years, 1 month ago

I had not messed around with file uploads in ASP.NET MVC for a while and so when I fired up ASP.NET MVC 1.0 RTM I was pleasantly surprised to find out how easy they had made it! read more...

add a comment |category: |Views: 420

tags: another