arnoldmatusz

Stories submitted by friends of arnoldmatusz

How to help yourself when NuGet goes down(www.xavierdecoster.com)

submitted by johnrummelljohnrummell(1321) 2 months, 17 days ago

Today will be remembered as the day that NuGet.org went down and broke quite some builds. While many people would love to see the NuGet team wearing a pink sombrero, there is something to say about wearing it yourself if you did not manage to work around this. Let me explain… read more...

2 comments |category: |Views: 131

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

Help Make Visual Studio Faster(blogs.msdn.com)

submitted by pycckipyccki(357) 1 year ago

One of the most difficult things about our job is trying to decipher why Visual Studio is slow for a customer. Often it starts with a vague complaint (e.g. "Visual Studio is sluggish") which we then have to narrow down to a particular action that's slow, and try and get a profile. Then we have to look through a large profile and figure out which code is running slower than it should be and why. Sometimes the problem is CPU intensive, sometimes it's disk or network, sometimes it's a different program altogether that just happens to be slow. I know the process is just as frustrating for customers, who have to try and figure out just where it is slow and get us a profile. And of course, if VS is just a little bit slow, then it's often much easier to live with it than go through the hassle of trying to help us isolate it. Visual Studio PerfWatson: http://visualstudiogallery.msdn.microsoft.com/fa85b17d-3df2-49b1-bee6-71527ffef441 read more...

add a comment |category: |Views: 116

tags: another

MessageBox – The jQuery Plugin(www.jrummell.com)

submitted by johnrummelljohnrummell(1321) 1 year ago

Now that I’ve been working more and more with ASP.NET MVC, I’ve been rewriting some of my server side controls with jQuery plugins. A while back I shared my version of Janko’s popular MessageBox control. I’ve created a similar effect with a jQuery plugin based on the Highlight/Error examples on the jQuery UI Themes page. read more...

add a comment |category: |Views: 13

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

Create user friendly date fields with ASP.NET MVC EditorTemplates &amp(rachelappel.com)

submitted by pycckipyccki(357) 1 year, 1 month ago

Today's web sites need to be user friendly, interactive, and responsive. The date field is of particular interest because at this point in time, users pretty much expect too see nicely formatted dates on the site in general, and datepicker/calendar widgets to interact with when editing date fields. The best way to do this, of course, is with client side script; and when working in ASP.NET MVC, those scripts can work seamlessly with templates. What are MVC EditorTemplates & DisplayTemplates? Editor & Display templates behave a lot like partial views, since they're just .cshtml/.ascx files (so they technically are partial views), and they produce output inside of regular views, just like partial views. However, there are some key differences that distinguish templates from views: Templates render at an application wide scope, automatically. When you use partial views, you must call them from another view using helper syntax, e.g., @Html.Partial("_PartialViewName"). Templates render themselves only for the specific data types that they're setup to handle, e.g., DateTime, decimal or int, throughout the entire application. If you setup an EditorTemplate to render output for a particular data type, it will do so for every single field of that type in the application while partial views aren't tied to any particular data type. A DisplayTemplate renders itself only when its specific data type needs to display in an Index, Details, Delete, or custom view. An EditorTemplate renders itself only when its specific data type is in edit mode and while in Edit mode. A benefit of using Editor and DisplayTemplates is that you don't have to add repetitive code into views individually. More importantly you won't find yourself adding code to work with each field individually, as that creates code that's not DRY and harder to maintain. Just add your Html Helpers, widgets, & script to the templates directly and the Razor/ASPX view engine will take over to produce output based on those data types in templates. read more...

add a comment |category: |Views: 18

tags: another

Interesting jQuery Tutorials - April 2011(www.ajaxline.com)

submitted by pycckipyccki(357) 1 year, 1 month ago

Moving Boxes Content with jQuery Expanding Image Menu with jQuery Animated Content Menu with jQuery How to Make a Slick Ajax Contact Form with jQuery and PHP Drag-and-Drop with jQuery: Your Essential Guide ... and Many More read more...

add a comment |category: |Views: 9

tags: another

ASP.NET web services mistake: manual JSON serialization(encosia.com)

submitted by pycckipyccki(357) 1 year, 1 month ago

If you’ve spent much time working with the .NET platform, ASP.NET’s simple, convention-based approach to exposing JSON endpoints seems just about too good to be true. After years of fiddling with manual settings in XML configuration files, it’s understandable to assume that working with JSON in ASP.NET would require a similar rigmarole, yet it does not. Unfortunately, this unexpected ease-of-use isn’t obvious if you don’t already know about it, which has led some developers to build needlessly complicated solutions to problems that don’t actually exist. In this post, I want to point out a few ways not to approach JSON in ASP.NET and then show you a couple examples of leveraging the frame work to do it “right”. read more...

add a comment |category: |Views: 26

tags: another

Integrating OpenID in ASP.NET Web Forms using DotNetOpenAuth(bhaidar.net)

submitted by pycckipyccki(357) 1 year, 1 month ago

I recently started exploring OpenID/OAuth authentication/authorization concepts hoping to develop ASP.NET Web Form applications enabled for Single Sign One with OpenID Providers. A provider could be Google, Yahoo, Facebook, Myspace etc ... In this article, I will show you how to enable an ASP.NET Web Form's application to authenticate/authorize with OpenID Providers like Google, Yahoo, OpenID, myOpenID, Wordpress, etc ... I won't go into explaining OpenID standards as there are so many articles out in the jungle that you can grab & read. Therefore, what I will do is offer you some useful material that I will recommend you go over them to get the details of OpenID and its extensions. read more...

add a comment |category: |Views: 75

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

30 PRO JQUERY TIPS, TRICKS AND STRATEGIES(www.problogdesign.com)

submitted by pycckipyccki(357) 1 year, 2 months ago

These tips and tricks all have one thing in common- they are all smashingly useful. With this stuff in your back pocket, you’ll be ready to go change the world, and even better, write jQuery like you know what you’re doing. It’s gonna be fun. We’ll start with some basic tricks, and move to some more advanced stuff like actually extending jQuery’s methods and filters. Of course, you should be familiar with the basics of jQuery first. If you haven’t used jQuery before, I highly recommend browsing the documentation and watching jQuery for Absolute Beginners Video Series. Otherwise, you’re ready to dig in! read more...

add a comment |category: |Views: 16

tags: another

Data linking with jQuery(brijbhushan.net)

submitted by pycckipyccki(357) 1 year, 2 months ago

Data kinking provides us a way, to link our data/objects to UI controls. Means, if the controls get updated, the underlying data object would also be updated. In the same way, if the data objects get updated, the controls on UI will also get updated (In case of two way linking). Means once you linked your data with the controls, you don’t need think about the data object. The syncing between data object and your UI will be taken care by the jQuery plug in. read more...

add a comment |category: |Views: 29

tags: another

IIS Express and Visual Studio 2010 without SP1(www.jrummell.com)

submitted by johnrummelljohnrummell(1321) 1 year, 2 months ago

Here’s how you can integrate IIS Express with Visual Studio 2010 without SP1. I’m taking advantage of External Tools again. read more...

2 comments |category: |Views: 16

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