Posts tagged .net

jsInject httpModule – Injecting JavaScript into MS Dynamics CRM

0

How does it work?

Well, first of all it is a httpModule (IHttpModule) hooked into the HttpApplication.EndRequest event. On the EndRequest event it simply checks to see if there is a .js file that matches either the file extension, file name or file path of the current request.

For example:
A request to http://www.mydomain.com/myfolder/mypage.aspx would initiate a check for the following .js files…
- /jsInject/Extensions/.aspx.js
- /jsInject/FileNames/mypage.aspx.js
- /jsInject/Paths/myfolder/mypage.aspx.js

If the corresponding .js file exists it will be injected it into the request.

Check out the full blog post here and download the source and binaries here

Mono is reborn… Enter Xamarin

0

After many reports and rumours that the Mono teams had been axed it is good to hear it is not all bad news!

Miguel de Icaza wrote a post on his blog yesterday that confirmed the rumours and gives hope to those that have invested heavily in Mono.

Xamarin is born… http://www.xamarin.com/

 

More free tutorials. This Time asp.net web forms

0

Some more great free tutorials from Pluralsight worth mentioning http://www.asp.net/web-forms

These tutorials cover a few areas of developing with asp.net web forms including the entity framework, master pages, and ajax. More tutorials are being added so keep your eye on them!

 

Free asp.net mvc training videos

0

I have a few things to post but will start with this link to a selection of asp.net mvc video tutorials…

Microsoft and Pluralsight have teamed up on several occasions and have done so again to bring you some great asp.net mvc tutorials for free. In my opinion these are possibly the best free video tutorials available for asp.net mvc.

Here’s a quote from the almighty Scott Guthrie

This MVC 3 course recorded by K. Scott Allen for Pluralsight provides a fantastic way to quickly get up to speed on the latest release of ASP.NET MVC. Scott’s presentation style is easy to follow and technically compelling, and the course format, video player, and overall cadence are really great. Plus – it’s free, so there’s no excuse not to learn MVC 3 today!

If you are learning asp.net mvc then these tutorials are a must!

http://www.asp.net/mvc/pluralsight

Go to Top