Enterprise Library Tutorials#
DotNetJunkies has this article on the Ent Lib's DAAB and ConfAB (you basically have to use the Configuration App block if you want to use DAAB). They say they are going to have follow up articles on each of the app blocks.
Categories: Code Links
Monday, August 15, 2005 4:37:46 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Dynamic Columns in SQL Reporter#
This article shows how you can programatically alter the columns in your SQL Reporter reports.
Categories: Code Links
Monday, August 15, 2005 4:14:27 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

AJAX.Net#
I can't find much information aboiut this stuff. It looks like maybe he is enabling you to call public methods on a webpage code behind, and not really designed to consume web services.
Categories: Code Links
Friday, August 05, 2005 8:23:46 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Webservice HTC#
Even though I really don't wan to use anything MS specific, I don't have the time to code what is provided by the Webservice.HTC file, and I know that supporting non-IE is not at all important where I work, even though my main concern is with being locked down to ANYTHING, not just MS stuff. Here is a good walkthrough of using the behavior.
Categories: Code Links
Tuesday, August 02, 2005 5:56:40 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

AJAX Framework and lookup control#
The AJAX (Asynchronous JavaScript and XML) framework on this guys site is impressive. With little coding I was able to return a string from a webservice into javascript, but I am not sure how it will deal with complex types but I guess it now can pass down an XML doc, which you could pass to an object constructor in JS. The dropdown is sweet (source).
Categories: Code Links
Tuesday, August 02, 2005 5:19:59 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Another webcombo control#
This control is free, but it doesn't do any out of band lookups.
Categories: Code Links
Tuesday, August 02, 2005 4:37:11 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Protecting your images on the web#
The methods discused in this article won't really "protect" your images, only make it a pain in the butt for someone to get them. So I guess that is a level of protection. The article references the free program HTMLEncrypt which encodes your HTML and uses javascript ( I assume ) to dynamically write it out. With this method, you would have to use a tool like the accenture Rainbow frame that I worked with one time to get the dynamically generated content.
Categories: Code Links
Tuesday, August 02, 2005 7:37:19 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Validate HTML and Links (Find Broken links)#
The W3C Validator section has lots of cool tools that run online to check your documents. The header has a link to the link checker which will scan your website for bad or broken links.
Categories: Code Links
Monday, August 01, 2005 6:46:19 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Microsoft SQL Server 2005 Upgrade Advisor#
This tool from Microsoft will help you analyze your current server configuration and help you migrate to SQL Server 2005.
Categories: Code Links
Monday, August 01, 2005 11:55:54 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Javascript Popup Balloon#
This article from Code Project shows how to create a help balloon in DHTML.

Depending on how they implement it, this could be useful.
Categories: Code Links
Tuesday, July 26, 2005 9:28:04 AM (Central Daylight Time, UTC-05:00) #    Comments [1]  | 

 

Adding Namespaces to all files#
We are redoing a big project with a ton of files where the project has a "Root Namespace."

These root namespaces are a real pain in the butt!

So I found that if you use the Find / Replace in Files and you turn on RegExp, you can search for:
"Public Class"
and replace it w/
Namespace Old.Namespace\n\nPublic Class

That should work... we will see.
Categories: Code Links
Wednesday, July 20, 2005 11:04:19 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

NUnit ASP#
NUnit ASP is a tool for working with NUnit and the presentation layer of asp.net applications.

Some articles on how to get started w/ it can be found here and here/
Categories: Code Links
Monday, July 18, 2005 9:41:10 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Single Signon#
My friend Phil sent me this snip for your .config files to allow multiple asp.net applications to share the same singon:

<!--Override the machine.config default behavior of the validation to allow authentication across apps

this is done by changing "AutoGenerate,IsolateApps"

to "AutoGenerate"-->

<machineKey validationKey="AutoGenerate"

decryptionKey= "AutoGenerate" validation="SHA1"/>

I haven't tried it in production yet, but will soon.

Categories: Code Links
Monday, July 18, 2005 8:48:52 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Iraq War Creating More Terrorists#
As if anyone didn't KNOW that the war in Iraq is doing more to hurt our security than help it, this report has come out, showing that almost everyone involved in the atacks on American troops in Iraq has come from people who had never participated in any terrorist activity.
Categories: Code Links
Monday, July 18, 2005 8:46:07 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Professional Blogger via AdSense?#
This guy is talking about how he makes more money in 1 month as a blogger, than he did in a year before!
Categories: Code Links
Sunday, July 17, 2005 12:33:30 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Funny ways to avoid work!#
This article is talking about funny ways that people use technology to avoid work (rolling back your computer clock before sending email etc).

Pretty funny, but if someone gets an email at 10:45 and it says it was sent at 4:30, won't you figure it out?
Categories: Code Links
Sunday, July 17, 2005 12:32:04 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Inheritance vs Composition#
This site has a nice little summary of Inheritance vs Composition.
Class Inheritance should be used only if instances of the new class can be used in all situations where the existing class can be used. Class Inheritance not inappropriate if the subclass needs to stub out behaviour implemented by the superclass. Use Object Composition if instances of the new class do not require the protocol of the superclass.
Categories: Code Links
Friday, July 15, 2005 8:42:48 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

O/R Mappers#
I have been messing around with a few O/R Mappers. As of now, I still am not in favor of them, but I want to at least get them KINDA working right.

Mostly the big problem I am having is w/ nulls. You can't have a null integer.

The 2 I have been using are Wilson ORMapper and NHibernate.

This page shows some sample code for Wilson, and this apge is the documentation for NHibernate, with their forms being located here.

In this blog entry Wilson claims that his handles nulls, but I haven't seen how to do that yet.
Categories: Code Links
Wednesday, July 13, 2005 5:21:58 PM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

SSL over DNN#
There is a free module for SSL login here.

Some have implemented Secure Login here by making the link to login use https.

Here's a thread with a javascript way to turn HTTPS on and off

Thomas Thorp's SSL Module uses an HTTP module

Also, failed passwords are sent to back to the client 's. It's this line in the Signin.ascx.vb file....
txtPassword.Attributes.Add("value", txtPassword.Text)
That re-populates the password textbox with whatever had been typed in.
Categories: Code Links
Tuesday, July 12, 2005 9:02:56 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

Creating Javascript Proxies for calling webServices on the client#
This is really pretty cool.

The smart thing that this guy goes is he sets a client side javascript include to a ASPX page, who is in charge of figureing out the WSDL info and building the javascript proxy.

Neato.
Categories: Code Links
Tuesday, July 12, 2005 8:34:44 AM (Central Daylight Time, UTC-05:00) #    Comments [0]  | 

 

All content © 2010, Christopher May, Inc
Open Job Positions
On this page
Google Ads
This site
Calendar
<August 2005>
SunMonTueWedThuFriSat
31123456
78910111213
14151617181920
21222324252627
28293031123
45678910
Archives
Sitemap
Blogroll OPML
Disclaimer

Powered by: newtelligence dasBlog 2.3.9074.18820

The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

Send mail to the author(s) E-mail

Theme design by Jelle Druyts


Pick a theme: