rimsystems

Stories submitted by rimsystems

JSON.NET DataTable Serializer(west-wind.com)

submitted by rimsystemsrimsystems(6119) 3 years, 5 months ago

I've been thinking about replacing the JSON serializer in my internal codebase for some time and finally put a little effort into allowing JSON.NET from James Newton King to be plugged into my Ajax framework as a replaceable engine. read more...

add a comment |category: |Views: 493

tags: another

How to respond with code 404 (Not Found) in ASP.NET(dotnettipoftheday.org)

submitted by rimsystemsrimsystems(6119) 3 years, 5 months ago

Quick tip on using HttpException read more...

1 comment |category: |Views: 295

tags: another

New feature in ASP.NET 3.5 SP1: Form.Action now writable(john-sheehan.com)

submitted by rimsystemsrimsystems(6119) 3 years, 5 months ago

URL Rewriters everywhere rejoice read more...

3 comments |category: |Views: 59

tags: another

Debugging A Web Site With A Host Header-VS2008 SP1 Issue with IIS 5/6(blogs.msdn.com)

submitted by rimsystemsrimsystems(6119) 3 years, 5 months ago

If you have downloaded the RTM version of SP1 for Visual Studio 2008, you may get an error when trying to debug a Web Site with a host header on IIS 6 or IIS 5.1. The error message reads: "Unable to start debugging on the web server. An authentication error occurred while communicating with the web server. Please see Help for assistance." read more...

add a comment |category: |Views: 99

tags: another

ASP.NET tab in IIS, more dangerous than it first appears!(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 3 years, 6 months ago

When ASP.NET 2.0 was released, Microsoft provided a new tab in IIS called "ASP.NET". At first this appears to be a welcome addition, and for development computers, it really is. The issue is this: The ASP.NET tab in IIS 5 and IIS 6 uses the aspnet_regiis.exe command in the background and, if used, will cause a full AppDomain recycle on the *entire server*. read more...

add a comment |category: |Views: 3

tags: another

Combining jQuery Validation with ASP.NET MVC(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 3 years, 6 months ago

See how the jQuery Validation plugin can be used with the MVC framework to validate all the inputs in a form before it is submitted to the controller. read more...

add a comment |category: |Views: 518

tags: another

Back to Basics: var != Dim(hanselman.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

Someone said today after seeing the C# var operator for implicitly typed variables, "Oh, now C# has Dim." Well, not exactly. Not even close. read more...

add a comment |category: |Views: 14

tags: another

Top 10 Security Vulnerabilities in Web.config Files - Part 2(h71028.www7.hp.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

This part will focus on authentication and authorization application security issues, and detail another five vulnerabilities commonly found in ASP.NET Web-based applications using Forms authentication. It will also provide some best practices for application security, including locking down your configuration files to ensure that they are not unintentionally modified by well-meaning (but uninformed) programmers or administrators. read more...

add a comment |category: |Views: 21

tags: another

Top 10 Security Vulnerabilities in Web.config Files - Part 1(h71028.www7.hp.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

Even the most meticulous and security-aware C# or VB.NET code can still be vulnerable to attack if you neglect to secure the Web.config configuration files of your application. Incorrectly configured Web-based applications can be just as dangerous as those that have been incorrectly coded. To make matters worse, many configuration settings actually default to insecure values. read more...

add a comment |category: |Views: 25

tags: another

Microsoft tools address SQL injection attacks(news.cnet.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

On Tuesday, Microsoft issued new tools to assist Microsoft ASP and ASP.NET technologies against recent Web-based attacks. read more...

add a comment |category: |Views: 18

tags: another

VisualSVN Server 1.5 Released(visualsvn.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

We are glad to announce the new and improved version of the popular all-in-one Subversion server package for Windows platform - VisualSVN Server 1.5. This release brings new Subversion 1.5 with a bunch of great features and several important improvements in VisualSVN Server itself: Windows Authorization and UI for hooks. read more...

1 comment |category: |Views: 268

tags: another

VisualSVN 1.5 Released(visualsvn.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

We are glad to announce new version of the professional Subversion integration for Microsoft Visual Studio - VisualSVN 1.5. This release brings to you the new release of Subversion 1.5 with a bunch of great fetures and bug fixes. read more...

add a comment |category: |Views: 233

tags: another

How to get Cross Browser Compatibility Every Time(anthonyshort.com.au)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

Cross-browser compatibility is one of the most time consuming tasks for any web designer. We’ve seen many different articles over the net describing common problems and fixes. I’ve collated all the information I could find to create some coding conventions for ensuring that your site will work first time in every browser. There are some things you should consider for Safari and Firefox also, and IE isn’t always the culprit for your CSS woes. read more...

add a comment |category: |Views: 431

tags: another

Using Classes To Fight CSS Class Explosion(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

You might think that really stylable HTML needs classes all over the place. That's not true, thanks to descendant selectors, which let you target elements inside a parent element. read more...

2 comments |category: |Views: 271

tags: another

IDataReader Extension Methods(weblogs.asp.net)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

Nice extension methods for dealing with IDataReaders read more...

add a comment |category: |Views: 26

tags: another

Everything You Wanted To Know About MVC and MVP But Were Afraid To Ask(haacked.com)

submitted by rimsystemsrimsystems(6119) 3 years, 7 months ago

A coworker recently asked for some good resources on getting up to speed on the Model View Controller (MVC) pattern. Around the same time, I received another email talking about how people are confused around the difference between MVC and the Model View Presenter (MVP) pattern. No better opportunity to apply the DRY principle by answering some of these questions with a blog post. read more...

add a comment |category: |Views: 24

tags: another