Apparently BenNadel.com Runs On ASP.NET - News To Me

Posted August 15, 2007 at 2:51 PM

Glen just pointed out to me that, according to www.builtwith.com, my site, bennadel.com was built using ASP.NET. This is news to me, especially considering the only file extensions I ever use on my site are HTM and CFM.


 
 
 

 
 
 
 
 

You Might Also Be Interested In:



Reader Comments

Aug 15, 2007 at 3:35 PM // reply »
2 Comments

Unfortunately, it looks like they are getting that from the X-Powered-By line in the response header that is getting sent by the server. Shame ColdFusion doesn't inject a line like that into the response header.


Aug 15, 2007 at 4:03 PM // reply »
8,777 Comments

@David,

Nice call; I would have never even thought to look at the response headers. I tried adding this line:

<cfheader
name="X-Powered-By"
value="ColdFusion MX7"
/>

... but unforutnately, it won't overwrite the ASP.NET value, it will only add to it:

X-Powered-By: ASP.NET, ColdFusion MX7

I even tried using the GetPageContext() to set the header value, but it looks like the documentation is not quite accurate on the fact that it will overwrite it... oh well. At least now, it has ColdFusion MX7 in there.


Aug 15, 2007 at 4:09 PM // reply »
42 Comments

Apparently this is a custom header that gets added to your IIS configuration when ASP.NET gets installed. Or at least that's what this page says: http://www.asp101.com/articles/wayne/pryingeyes/default.asp

There's some instructions on how to remove it half way down the page.


Aug 15, 2007 at 7:48 PM // reply »
1 Comments

Your custom pictures are always great, but this one takes the cake - I love it. Thanks.


Aug 16, 2007 at 7:31 AM // reply »
8,777 Comments

Ha ha, thanks :) It helps keep my day interesting.


Post A Comment

Comment Etiquette: Please do not post spam. Please keep the comments on-topic. Please do not post unrelated questions or large chunks of code. And, above all, please be nice to each other - we're trying to have a good conversation here.

Please review the following issues:

Author Name:


Author Email:

Author Website:

Comment:

Formatting: <strong>bold</strong> <em>italic<em>







  • Help Wanted - Find Your Next ColdFusion Job
Recent Blog Comments
Sep 3, 2010 at 5:48 AM
Scope Behavior When Using CFThread Inside Of ColdFusion Components
Thanks Ben, Excellent article and very precise explanation. Cheers Philip A question on invoking asynchronous save or some task and returning response back to the calling page. Using cfThread is ... read »
Sep 3, 2010 at 3:04 AM
Long Polling Experiment With jQuery And ColdFusion
@Ben, Thank you for your answer. If you are interested in - I solved the problem. It was, as you said, a buffer issue. Now when I'm getting a new request, the first thing I do is I'm sending some fa ... read »
Sep 3, 2010 at 1:29 AM
Using jQuery's SlideUp() and SlideDown() Methods With Bottom-Positioned Elements
Hey Ben, Thanks for clearing this up! Also, is there a way for the container to be open when you first load the page, so that when u click on the link it will slideUp? ... read »
Sep 3, 2010 at 12:29 AM
Bidirectional Data Exchange With ColdFusion's CFThread Tag
Thanks for posting this example, Ben. I plan to put something like this to use. I want to spawn up a thread to insert several records (possibly 1000s) into a database incrementing a counter upon ea ... read »
Sep 2, 2010 at 11:23 PM
Experimenting With HTML5's Cache Manifest For Offline Web Applications
Hi Ben, having checked all articles on Html5's appCache, is there a solution to just update newer files, using the manifest file? I am looking into using application cache to actually have an offline ... read »
Sep 2, 2010 at 3:11 PM
Long Polling Experiment With jQuery And ColdFusion
@Alex, It looks like some of the browsers implement some sort of buffering on the data request. I was definitely finding different behavior across browsers. I want to come back and figure this code ... read »
Sep 2, 2010 at 3:09 PM
Creating Base64-Encoded Data URLs For Images In ColdFusion
@Randall, At the very least, I think Chrome won't be able to close windows unless it opens them up, right? I am not sure. ... read »
Sep 2, 2010 at 2:17 PM
ColdFusion NumberFormat() Exploration
Ben - I have same question as Jim and I think maybe you misread it? I want numbers with non-zero decimal places to display the decimal, but those that have no decimal to display w/o the decimal poin ... read »