Hi all, I have a C# project and I want to print all the code from all items included in it ( aspx, cs, etc. ). Is there a way to do this? I'm using VS .NET...
Guys, I am looking for an Image Generator (COM, Managed Code, or C) that will create Alpha Numeric 5 Digit characters for "Human Verification" on a web page....
Captcha. Codeproject.com = Google of C# Tutorials http://www.codeproject.com/aspnet/CaptchaImage.asp -- Programming today is a race between software engineers...
I don't how possible this is but figured I would at least ask. As part of a cost estimation application I am creating I am including a query that returns the...
Will, I might be misunderstanding your question but would adding a group by clause to your query get you the results you are looking for. You will need to...
Thanks Elizabeth. This will work nicely! - will -- Programming today is a race between software engineers striving to build bigger and better idiot-proof...
Hamster in Code: Outputting error messages is one of the hardest things I struggle with when writing applications. I have a newer .NET console application and...
Wayne, Great question. For almost 38 years, I have struggled with this issue and I still don't have any great insights. I find that when I fail to pass an ...
I would lean towards wrapping your console app at a very high level and then handling the exception there. You likely can find existing exception classes for...
I think I am an Elvis . -Andrew From http://donxml.com/allthingstechie/archive/2006/01/11/2433.aspx (Don "XML" Demsak) Wizard Droppings (Noun): 1. The...
LOL @ Wizard Dropper -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
I have a CleanData function in my application that strips nasties off of user-submitted text (i.e. >, <, ', etc...) and replaces them with nothing. string...
Will, Not sure what is horribly "nasty" about the characters that you listed. ASP.NET does a pretty good job (not perfect) of blocking script on data entry. ...
Gotcha. The reason why I wanted to strip those characters off is because I am doing a replace of a page title for a permalink structure. For example, if the ...
Will - Here is an easy method to validate data that uses regular expressions. This is a stronger approach than using the replace function because it removes...
Bingo! Thanks. - Will -- Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe...
I want to create a SQL Server 2000 view that combines 2 tables on 2 different servers. Both of the servers are in house and I have permissions to view both of...
I spend more and more time reading blogs. Great info and a great way to learn. If you are just getting started, check out NewsGator. They offer a free web...
Reflector is a class browser for .NET components. It supports assembly and namespace views, type and member search, XML documentation, call and callee graphs,...
It is a great way to look into all the .NET Objects and to steal peoples code. Basically you can reverse engineer any managed compiled code or look for...
SQL Express is limited to 4 GB. I put up a table listing the major differences and will add to it over time. http://www.binaryocean.com/Express.aspx -Andrew ...