javery

Stories submitted by friends of javery

Herding Code 142 - Scott Guthrie on the open source announcement(herdingcode.com)

submitted by jongallowayjongalloway(4380) 1 month, 3 days ago

The Herding Code guys talk to Scott Guthrie about the recent open source announcement for ASP.NET MVC, Web API, and Razor. read more...

1 comment |category: |Views: 113

tags: another

Phil Haack, Keith Dahlby and Paul Betts on Git for Windows(herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 6 days ago

Herding Code podcast talking to Phil Haack and Paul Betts (both new GitHubbers) and Keith Dahlby (author of posh-git, a set of PowerShell scripts which provide Git/PowerShell integration) about using Git on Windows. read more...

4 comments |category: |Views: 240

tags: another

10 Things ASP.NET Developers Should Know About Web.config Inheritance(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 4 months, 9 days ago

Ten things you should know about Web.config inheritance and overrides that will simplify some configuration challenges and help with debugging. Bet there are some you didn't know about! read more...

5 comments |category: |Views: 1282

tags: another

Herding Code 130: Dave Weaver on Loggr – a realtime analytics service (herdingcode.com)

submitted by jongallowayjongalloway(4380) 4 months, 22 days ago

Herding Code podcast with Dave Weaver about Loggr, a complete logging, analytics and notification service built with ASP.NET MVC, SignalR, and MongoDB. read more...

3 comments |category: |Views: 82

tags: another

Using Node.js in an ASP.NET MVC application with iisnode(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 7 months ago

iisnode makes it easy to run Node.js on Windows, and since it's an HTTP Handler you can integrate it directly into an ASP.NET application. Neat, huh? read more...

4 comments |category: |Views: 105

tags: another

Herding Code 124: Anthony van der Hoorn and Nik Molnar on Glimpse(herdingcode.com)

submitted by jongallowayjongalloway(4380) 7 months, 2 days ago

In this podcast, the Herding Code gang talks to Anthony and Nik, the creators of Glimpse. Glimpse is a system which allows you to view server-side information in the browser (think Firebug for server code) read more...

add a comment |category: |Views: 11

tags: another

Using CodeMirror to add C# highlighting to an HTML TextArea(weblogs.asp.net)

submitted by jongallowayjongalloway(4380) 11 months, 12 days ago

CodeMirror is a Javascript library that adds live syntax highlighting to a text area. This post shows how to use it in your applications. read more...

add a comment |category: |Views: 32

tags: another

Building a jQuery Plug-in to make an HTML Table scrollable(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 11 months, 28 days ago

Table displays in limited space require some rendering alternatives. While paging is a common way to address fixed size displays, it's not an end-all solution. Sometimes it's necessary to display larger amounts of data in a small fixed space on an HTML page. Scrollable list are fairly easy to do with most HTML structures, but HTML tables are notoriously difficult to manage when it comes to scrolling. In this post I describe a jQuery plug-in that attempts to make any table scrollable by decomposing and reassembling the table into two distinct areas. read more...

add a comment |category: |Views: 31

tags: another

Built-in GZip/Deflate Compression on IIS 7.x(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

IIS 7.x makes content compression via GZip very easy. Here's how compression on IIS works and how you can set it up on your server in a few simple steps. read more...

add a comment |category: |Views: 40

tags: another

ASP.NET GZip Encoding Caveats(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

GZip and Deflate compression is easy to use in ASP.NET applications, but there are a few caveats that you need to watch out for. This post reviews the basics of implementing compression in ASP.NET code and describes a couple of scenarios that can cause problems when using programmatic compression via Response.Filter. read more...

add a comment |category: |Views: 7

tags: another

ASP.NET Routing not working on IIS 7.0(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 1 month ago

Got caught be a difference in behavior between IIS 7.0 and IIS 7.5 with how module management to extensionless URLs are fired in IIS. Routing was working fine on my dev machine, but not on my live server. Here's what you need to watch out for. read more...

add a comment |category: |Views: 24

tags: another

Setting up custom ASP.NET Routing to an HttpHandler(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 1 month ago

Routing support in ASP.NET 4.0 has been vastly improved, but custom routing still involves a fairly complex process of creating RouteHandlers and mapping requests properly. In this post I show an example of how to create custom routes automatically via Attribute route mapping for Http Handler endpoints. read more...

add a comment |category: |Views: 20

tags: another

Hosting the Razor Engine for Templating in Non-Web Applications(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year, 4 months ago

In this article I describe a set of classes that provide a wrapper around the Razor View Engine so you can use it easily in your own applications to provide templating functionality. read more...

1 comment |category: |Views: 71

tags: another

Has Visual Studio caused the end of The World yet?(stevenharman.net)

submitted by usshermussherm(5285) 2 years, 3 months ago

If this error dialog is any indication... read more...

add a comment |category: |Views: 12

tags: another

Context and Best Practices(www.lostechies.com)

submitted by usshermussherm(5285) 2 years, 4 months ago

The Right Way versus the Better Way; Default Architectures; Starting Small read more...

add a comment |category: |Views: 505

tags: another

Rendering Script References into the Html Header(west-wind.com)

submitted by rstrahlrstrahl(7226) 2 years, 4 months ago

ASP.NET natively supports script embedding only into the body of the HTML document which is limited in many ways if you need more control over how scripts load under program control. In this post I'll show one of my components that allows embedding scripts and script references in the header of the document as well as many useful script embedding features for ASP.NET. read more...

add a comment |category: |Views: 19

tags: another