sahi

Stories submitted by sahi

Building Cross-Platform Apps Using jQuery Mobile(msdn.microsoft.com)

submitted by sahisahi(231) 1 year ago

jQuery Mobile introduces a cross-platform and cross-device framework for developing mobile applications. Just as jQuery changed the way we wrote JavaScript , jQuery Mobile will change the way we build mobile web applications. read more...

add a comment |category: |Views: 4

tags: another

Introduction to Complex UIs Using jQuery UI (msdn.microsoft.com)

submitted by sahisahi(231) 1 year ago

Building a web application with jQuery makes the task easier. Similarly, building a web application with a complex UI is made easier with jQuery’s sister project jQuery UI. With jQuery UI we have a collection of interactions, widgets and a theme builder at our fingertips that allows us to make a cohesive UI read more...

add a comment |category: |Views: 7

tags: another

Why Not C#?(blogs.msdn.com)

submitted by sahisahi(231) 1 year ago

Someone recently passed on same objection to using C# as a first or otherwise early programming language. I hear these sorts of comments all the time and while I have addressed some of them in the past it seems like this is a good time to readdress them. These are my opinions of course. They are based on my own teaching experience as a high school computer science teacher. And your mileage may vary but these things I believe. read more...

1 comment |category: |Views: 149

tags: another

Reimplementing LINQ to Objects: Part 1 - Introduction(msmvps.com)

submitted by sahisahi(231) 1 year, 8 months ago

About a year and a half ago, I gave a talk at a DDD day in Reading, attempting to reimplement as much of LINQ to Objects as possible in an hour. Based on the feedback from the session, I went far too fast... and I was still a long way from finishing. However, I still think it's an interesting exercise, so I thought I'd do it again in a more leisurely way, blogging as I go. Everything will be under the "Reimplementing LINQ to Objects" tag, so that's the best way to get all the parts in order, without any of my other posts. read more...

add a comment |category: |Views: 106

tags: another

Reimplementing LINQ to Objects: Part 2(msmvps.com)

submitted by sahisahi(231) 1 year, 8 months ago

We're going to implement the "Where" clause/method/operator. It's reasonably simple to understand in general, but goes into all of the deferred execution and streaming bits which can cause problems. It's generic, but only uses one type parameter (which is a big deal, IMO - the more type parameters a method has, the harder I find it to understand in general). Oh, and it's a starting point for query expressions, which is a bonus. read more...

add a comment |category: |Views: 69

tags: another

Razor Syntax in ASP.NET MVC 3 Preview 1(www.dotnetcurry.com)

submitted by sahisahi(231) 1 year, 8 months ago

The following article demonstrates how to use the new syntax in the Razor view engine in ASP.NET MVC 3 Preview 1 read more...

add a comment |category: |Views: 234

tags: another

Extensionless URLs not working with ASP.NET MVC 2 on IIS 7 or 7.5(support.microsoft.com)

submitted by sahisahi(231) 1 year, 8 months ago

MVC 2 and ASP.NET 4 Web Forms applications that use URL routing might return HTTP 404 errors when they attempt to process extensionless URLs on IIS 7 and IIS 7.5. read more...

add a comment |category: |Views: 98

tags: another

.NET 4.0 has 2 Global Assembly Cache (GAC)(www.devcurry.com)

submitted by sahisahi(231) 1 year, 10 months ago

While reading an article on Understanding The CLR Binder, I found out that .NET 4.0 has 2 distinct GAC’s (Global Assembly Cache).In previous .NET versions, when I installed a .NET assembly into the GAC (using gacutil.exe), I could find it in the ‘C:\Windows\assembly’ path. With .NET 4.0, GAC is now .... read more...

add a comment |category: |Views: 761

tags: another

Great Uses of Using Statement in C#(stevesmithblog.com)

submitted by sahisahi(231) 1 year, 11 months ago

In my last post about testing emails in .NET, I noted the use of the using statement to ensure safe usage of the IDisposable SmtpClient and MailMessage objects. This is the typical usage of the using statement, but you can take advantage of this statement’s behavior for other scenarios as well, resulting in cleaner code. read more...

add a comment |category: |Views: 16

tags: another

BDD-Style QUnit Testing ASP.NET MVC’s jQuery Validation(elijahmanor.com)

submitted by sahisahi(231) 1 year, 11 months ago

The goal of this blog post is to show how you can utilize some helpful techniques to easily Unit Test your Web Application read more...

add a comment |category: |Views: 50

tags: another

Jurassic - A Javascript Compiler for .NET(jurassic.codeplex.com)

submitted by sahisahi(231) 1 year, 11 months ago

Jurassic is a javascript compiler and runtime. It aims to provide the best performing and most standards-compliant implementation. read more...

add a comment |category: |Views: 26

tags: another