December 14th, 2007 08:15 AM
I would like to switch between https and http automatically depending on if the page content is sensitive or not. I am hosting on godaddy which does not allow you to turn on SSL for a directory. I'm...
November 9th, 2007 09:23 AM
Now we're getting somewhere! Yeah thats a good idea. From my understanding handlers (vs modules) we're originally setup to handle a certain file type (like .jpg to add a watermark). You could then...
November 9th, 2007 08:18 AM
In Edit2 you're getting there. A webcontrol capable of producing a dynamic image in a Class Library project. As a webcontrol.dll you won't have an aspx or ashx pages to serve. I guess my post was...
November 9th, 2007 07:50 AM
Ahh, but that will just return a blank page with nothing but the image. No, I think here we need some serious voodoo. I'd be surprised if its simple.
November 9th, 2007 05:38 AM
Yeah, that's what I just said. I'm already using a httphandler (ashx). That's the problem, you can't wrap an ashx page in a web control dll. It has to be a servable page on the actual website.
...
November 9th, 2007 04:37 AM
I'm using a CAPTCHA image generator from Code Project and would like to wrap this in to a web control.
So I was wondering what's the best way to display a dynamic image from a memorystream?...
April 25th, 2007 07:13 AM
I have a MyDataSet : DataSet class which contains 3 talbes and 2 data relations. This is set to a custom datagrid which can expand to show something like Users -> tickets for user -> details of...
November 14th, 2006 07:05 AM
Was just whipping up a quick util which immediately executes an assembly normally run by a winservice at night. The assembly implements an interface exposing a DoWork() function.
I decided to...
September 29th, 2006 04:28 AM
Visual Studio 2005 Team Edition, C#
Couldn't exactly decide where to put this, hope this is okay. From what I have seen, in order to use click-once the application must be installed via a...
August 10th, 2006 05:48 AM
Ok I found the way we're meant to do it:
New Item->Web Form and there is a checkbox near the bottom which says "Select Master Page".
Easy-peasey-lemon-squeezy ! :thumb:
August 9th, 2006 05:26 AM
VS2005 Team Edition - C#
I'm new to using a master pages and have noticed odd behavior adding content pages. As far as I know, you right click the master page and select Add Content Page. This...
March 28th, 2006 04:24 AM
By commenting out AddRequestHeaders the dat file did download. The 406 indicated a header problem alright. However this doesn't help current installs so they will never upgrade themselves to pick...
March 28th, 2006 03:13 AM
I have recently moved my websites from a linux machine to a windows .net v2 machine. I've been having various teething pains due to the differences and the latest affects the autoupgrade feature of...
December 1st, 2005 04:26 AM
Okay, maybe not the best written explaination of what I was looking for. The solution is easy and was something I did a year ago but forgot all about. Create a c# user control compiled to a class...
November 24th, 2005 11:41 AM
Here's the situation: A customer purchases a web-based content management solution to elminiate the paper-based files. However, to add the files in the first place they need to be scanned. The...
November 11th, 2005 10:58 AM
I'm curious about DirectoryEntry.Properties["memberOf"] and "Domain Users". Let's assume that I know a little about AD and that I can properly get the DirectoryEntry to any domain user. Now, every...
August 9th, 2005 10:06 AM
No worries, my fault for only posting here when I'm frustrated. Its hard to tell who is a newbie sometimes.
Here is the solution, for better or worse this resets the memory footprint. I run the...
August 9th, 2005 08:28 AM
A new'ed obj in C++ requires a delete. A local object in C++ calls its destructor when leaving scope. Unless I misunderstand the garbage collector completely, if its declared locally in a function...
August 9th, 2005 08:01 AM
I am having a problem with memory in a windows service I created in c# vs2003. The service activates once a day and performs a large operation. Using the resource monitor I can see the service grow...