dmcgiv

Stories kicked by dmcgiv

DomainKeys Identified Mail (DKIM) for .Net (C#)(github.com)

submitted by dmcgivdmcgiv(370) 1 year ago

Enables you to DKIM sign your MailMessages. read more...

add a comment |category: |Views: 15

tags: another

Translating routes (ASP.NET MVC and Webforms)(blog.maartenballiauw.be)

submitted by maartenbamaartenba(5845) 2 years, 4 months ago

For one of the first blog posts of the new year, I thought about doing something cool. And being someone working with ASP.NET MVC, I thought about a cool thing related to that: let’s do something with routes! Since System.Web.Routing is not limited to ASP.NET MVC, this post will also play nice with ASP.NET Webforms. But what’s the cool thing? How about… translating route values? read more...

1 comment |category: |Views: 251

tags: another

Measuring the Performance of Asynchronous Controllers(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 4 months ago

It's easy enough to start using Asynchronous Controllers with ASP.NET MVC 2.0. But how do you know whether it's giving you any benefits? You might be surprised to learn that, in many default scenarios, you won't get any benefit unless you also make some crucial configuration changes. In this blog post you'll see a simple way to load test your asynchronous controllers, and find a rundown of important configuration options that will dramatically affect their behavior. read more...

add a comment |category: |Views: 212

tags: another

Large or asynchronous file uploads in ASP.NET MVC(dimebrain.com)

submitted by johnsheehanjohnsheehan(4785) 2 years, 4 months ago

The challenge of uploading large files in ASP.NET through HTTP is not a new challenge. In addition to handling large files, users often request an experience that shows the progress of an upload as it occurs. When you have either or both of these requirements, or if you simply need direct control of a stream of file data uploaded from a browser, you invariably hit the wall. I set about solving the problem in an ASP.NET MVC-specific way. read more...

add a comment |category: |Views: 866

tags: another

ReSharper 5.0 Overview(blogs.jetbrains.com)

submitted by nihi_l_istnihi_l_ist(110) 2 years, 7 months ago

As promised, we’re publishing a general ReSharper 5.0 overview, elaborating on its feature set. Please keep in mind that this is a preliminary document. The general picture will stay unchanged, but local amendments cannot be ruled out at this point, and many user interface items will probably change. read more...

2 comments |category: |Views: 753

tags: another

A generic way to find ASP.NET ClientIDs with jQuery(west-wind.com)

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

ASP.NET ClientIDs and NamingContainer naming are a nuisance when working with jQuery as these long IDs complicate finding elements on the page. In this post I show a very simple way to retrieve munged ClientIDs by just their ID names with a small helper function that still returns the jQuery wrapped set. read more...

add a comment |category: |Views: 333

tags: another

Do you know about this undocumented Google CDN feature?(encosia.com)

submitted by gt1329agt1329a(7849) 2 years, 7 months ago

Information on an undocumented feature of the Google AJAX APIs CDN (jQuery UI themes hosted on the CDN, including images). read more...

add a comment |category: |Views: 450

tags: another

Reimagining www.asp.net(john-sheehan.com)

submitted by CraigStuntzCraigStuntz(438) 2 years, 8 months ago

Unfortunately www.asp.net hasn’t evolved along with the community it was intended to support and the current state of affairs on the web. The author says, "I thought to myself, 'How would you build www.asp.net if you could start from scratch?' I decided to write a series of articles to answer that question." read more...

1 comment |category: |Views: 328

tags: another

Visual Studio: Automatically increment assembly build version(code.mareoblo.pl)

submitted by elfyelfy(230) 2 years, 8 months ago

I always wanted to have automatic build version increment for my apps and libraries to avoid setting it manually again and again. Additionally there should be support inside Visual Studio and possibility for custom settings because I like the “date sigining” where 3 last fields are just YYYY-MM-DD. A dream come true ;) in form of Build Version Increment add-in for Visual Studio 2005/2008. read more...

2 comments |category: |Views: 674

tags: another

Integrating OpenID in an ASP.NET MVC Application using DotNetOpenAuth(west-wind.com)

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

OpenId is getting more popular and with it requests to integrate it into Web sites as a user authentication mechanism. In this post I'll discuss the OpenId integration on CodePaste.net in an ASP.NET MVC application discussing both high level OpenId concepts, the process and the code implementation. read more...

1 comment |category: |Views: 301

tags: another

xVal v1.0 is now released(blog.codeville.net)

submitted by desmonddesmond(2014) 2 years, 8 months ago

In case you’re not aware, xVal is a validation helper for ASP.NET MVC that lets you use your own choice of server-side validation framework (e.g., Microsoft’s DataAnnotations attributes, or Castle Validator, or NHibernate Validaion) and dynamically generates client-side validation code from your rules. Version 1.0 adds new features including dynamic client-side validation summaries and remote (ajax) validation rules. read more...

add a comment |category: |Views: 218

tags: another

Announcing the Microsoft AJAX CDN - ScottGu's Blog(weblogs.asp.net)

submitted by dbasarab617dbasarab617(100) 2 years, 8 months ago

Earlier today the ASP.NET team launched a new Microsoft Ajax CDN (Content Delivery Network) service that provides caching support for AJAX libraries (including jQuery and ASP.NET AJAX). The service is available for free, does not require any registration, and can be used for both commercial and non-commercial purposes. read more...

add a comment |category: |Views: 202

tags: another

ScottGu: Auto-Start ASP.NET Applications (VS 2010 and .NET 4.0 Series)(weblogs.asp.net)

submitted by JemmJemm(9604) 2 years, 8 months ago

"Today’s post covers a small, but nice, new feature that you can now optionally take advantage of with ASP.NET 4 - the ability to automatically startup and proactively initialize a web application without having to wait for an external client to hit the web server. This can help you provide a faster response experience for the first user who hits the server, and avoids you having to write custom scripts to “warm up” the server and get any data caches ready." read more...

add a comment |category: |Views: 351

tags: another

jQuery UI Datepicker and z-Index(west-wind.com)

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

The jQuery UI datepicker is a nice and easy to use datepicker control but if you're using it with other components that use absolute positioning you might run into issues with z-Index precendence. Here's a discussion of the problem and a couple of easy solutions around it. read more...

add a comment |category: |Views: 271

tags: another

Implementing a jQuery-Calendar ASP.NET Control(west-wind.com)

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

Updated the jQueryDatePicker control from an old version of Mark Grabansiki's jQuery calendar to the latest version of jQuery.ui. This is an easy to use wrapper around the control to make it easy to drop the control onto a page with minimal configuration fuss and provide POST back functionality on the inline behavior. read more...

add a comment |category: |Views: 316

tags: another

How to: “Kick It” or “Shout It” from Google Reader(alvinashcraft.com)

submitted by alashcraftalashcraft(1180) 2 years, 9 months ago

Evernote published a Google Reader "Send To" “how to” today, and I showed DZone readers how to push items to DZone’s queue yesterday. Here’s how you can send stories to DotNetKicks or DotNetShoutout. read more...

add a comment |category: |Views: 127

tags: another