(Gil Fink) When you want to alert the user in the client side of a web application probably you are embarrassed (or you don’t give a damn) when you use Javascript built-in alerts. I know I do. Javascript built-in alerts are very ugly IMHO and therefore I try to use alternatives instead. In this post
Tag: Development
jQuery Selectors (Basic and Basic Filters)
(Bipin Joshi) In Part 1 of this series you were introduced with jQuery with a simple example. Now let’s move ahead and learn one of the most powerful features of jQuery – Selectors.
ASP.NET Web Application: Publish/Package Tokenizing Parameters
(Sayed Ibrahim Hashimi) Today I just saw a question posted on stackoverflow.com asking Why are some Web.config transforms tokenised into SetParameters.xml and others are not? Let me give some background on this topic for those who are not aware of what the question is.
Implementing Asynchronous Operations in ASP.NET MVC Framework
(Joydip Kanjilal) The Model View Controller Design pattern can be used to isolate the application’s business logic from its user interface components. This promotes loose coupling and lesser cohesion amongst the components and as a result, the components of the application become easier to test and
ASP.NET 3.5 Master Page Design using Query String: A Second Glance
This is the second part of the ASP.NET Master Page query string tutorial. Using a query string allows you to present content to your website’s visitors by accessing a database, rather than placing content directly into the ContentPlaceHolder.
Parallel.For Method in .NET 4.0 vs the C# For Loop
(Suprotim Agarwal) A couple of months ago, I had written some articles on the Parallel class found in the System.Threading.Tasks namespace which provides library-based data parallel replacements for common operations such as for loops, for each loops, and execution of a set of statements.
ASP.NET MVC 3: Server-Side Comments with Razor
(Scott Guthrie) Earlier this week we shipped the ASP.NET MVC 3 Release Candidate. It supports “go live” deployments, and includes a bunch of great improvements/enhancements on top of the features we enabled earlier with the ASP.NET MVC 3 beta and first preview releases.
What the heck is Impedance Mismatch, anyway?
(Ged Mead) You hear technical terms being thrown around all the time, and it seems to me that sometimes they can make a relatively easy concept sound difficult. Take “Impedance Mismatch”, for example. You’ll probably have come across this term if you’ve been looking at LINQ or the Entity Framewor
Alternating Row Colours in MVC Views
(William Duffy) Alternating row colours on tabular data is one of the most common data visualisation styles a web developer has to implement. Almost every project I have built required tabular data, and alternating row colours were key to the clean, easily readable presentation of that data.
Validating domain name in ASP.NET
(SheoNarayan) In this article, I have tried to get the solution of checking a valid domain name in ASP.NET. This might not be the 100% full proof method to validate the valid domain however based on the number of test I did, it works.
