underwhelmed

Stories kicked by underwhelmed

Learn to Code WatiN: Browser Test your Web Site with WatiN(www.cptloadtest.com)

submitted by jayharrisjayharris(160) 2 years, 1 month ago

This coding exercise is designed to give you an introduction to browser-based testing using the WatiN framework, or Web Application Testing in .NET. The framework allows developers to create integration tests (using a unit testing framework like MbUnit, NUnit, or MSTest) to test and assert their application within a browser window. The framework interacts with the browser DOM much like and end-user, producing reliable results that mimic the real world. In this sample, we will write a few WatiN tests against the Google search engine. read more...

add a comment |category: |Views: 428

tags: another

Setting up ASP.NET MVC with Fluent NHibernate and StructureMap(www.kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 2 years, 1 month ago

On a yet-to-be-released side project of mine, I decided to use Fluent NHibernate, StructureMap, and ASP.NET MVC. It took me awhile to get everything to play together nicely, so I documented the steps I took in case anyone out there was interested in using in a similar setup. read more...

add a comment |category: |Views: 185

tags: another

Snapshot Databases - A Wonderful Gift to Testers(blog.sqlauthority.com)

submitted by pinaldavepinaldave(9662) 2 years, 1 month ago

If you do not know how Snapshot database work, here is a quick note on the subject. However, please refer to the official description on Book-on-Line for accuracy. Snapshot database is a read-only database created from an original database called the “source database”. read more...

add a comment |category: |Views: 314

tags: another

Introduction to NCover, setting up for analysis(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 2 years, 6 months ago

Taking a quick look at how to setup and use the NCover code coverage and analysis tool. Having the knowledge of the state of your code, is key to understanding the potential success and failures in your code. If having this knowledge is key to you, NCover is a great tool to help you better gain this knowledge read more...

1 comment |category: |Views: 243

tags: another

Building a Progressive Fluent Interface(dimecasts.net)

submitted by dwhittakerdwhittaker(13.1k) 3 years, 2 months ago

Taking a look at how to build a Progressive Fluent Interface which is a DSL where the options can and will change as you progress through the syntax. This is a useful form of a fluent interface if the want to be able to skillfully guide the user down only one path at a time. read more...

add a comment |category: |Views: 339

tags: another

aspneticons.com -- free icons for ASP.NET web applications(aspneticons.com)

submitted by javierRomerojavierRomero(1010) 5 years, 6 months ago

That’s not all! There are more than 300 (three hundred!) professionally designed icons for your ASP.NET applications in this collection. And, they all are completely free! read more...

2 comments |category: |Views: 741

tags: another

Source for thumboo.com thumbnailing service and database released(weblogs.asp.net)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 6 months ago

Michael Schwarz has released the source code for his recent project, thumboo.com. read more...

1 comment |category: |Views: 9

tags: another

Using a Control Adapter to Properly Display PNG Images in IE(codeproject.com)

submitted by underwhelmedunderwhelmed(60) 5 years, 6 months ago

Use a Control Adapter to handle displaying PNGs correctly in IE 5.5/6.0 read more...

add a comment |category: |Views: 7

tags: another

How a .NET developer get banned in a JAVA forum(spellcoder.com)

submitted by bashmohandesbashmohandes(3000) 5 years, 6 months ago

Forums idea sucks, how you are controlled by admins and moderators, how they can delete your stuff without a notice, personally I prefer blogs, because you are free to tell what you want read more...

add a comment |category: |Views: 4

tags: another

Securing .NET code(improve.dk)

submitted by orcaorca(820) 5 years, 6 months ago

When you write your code, compile it, and distribute the exe/dll's, is your source safe? We're not talking about protection against buffer overruns, SQL injection and various other code hacking techniques, we're talking protection of the source code itself, protection of intellectual properties. read more...

add a comment |category: |Views: 7

tags: another

Unit Testing with NUnit(en.csharp-online.net)

submitted by HyleHyle(2755) 5 years, 6 months ago

Learn to use open source NUnit to unit test your C# classes. Excerpt: read more...

add a comment |category: |Views: 38

tags: another

Spam proof your website using an HttpModule(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 5 years, 6 months ago

The module replaces all e-mail addresses on your website with the mixed hex/clear text characters. It's perfectly readable by browsers and humans, but not for spam robots. read more...

add a comment |category: |Views: 18

tags: another

.NET 2.0 FormsAuthentication Remember Me Challenge(xerratus.com)

submitted by xerratusxerratus(415) 5 years, 6 months ago

A few weeks ago, I posted a solution I came up with a way to utilize a remember me checkbox in .NET 2.0 that, when selected, pre-populated just the username in the username textbox during subsequent visits. The problem I found was that signing out of FormsAuthentication wiped out any and all cookies I had set during or prior to logging a user in. So, the simple act of looking at the cookie to see if the user wanted to be remembered became quite an ordeal. My solution was to set/get the cookie using JavaScript. There are some skeptics out there though. So, for them, I've created a very simple website solution that tries to set and get the remember me cookie as explained above. The challenge is to modify the solution so that it DOES work. read more...

1 comment |category: |Views: 13

tags: another