I have Visual Studio 2008 Professional and I am having issues with expanding and collapsing method code blocks in ASP.Net Generic Handler pages (.ashx)

I would have thought you could do the same thing like in the code behind of .aspx web pages.

I have this same issue on other boxes even with VS 2008 Standard and VS 2005 Professional. All boxes have been fully patched (OS and Visual Studio.)

Does anybody have any suggestions as to enabling this feature?

link|improve this question

Great question. I hope someone else can come up with a better answer, though. My annoyance is that when editing ASHX files, the code indentation preferences for HTML are used instead of the C# settings. – Jacob Dec 14 '10 at 23:20
feedback

3 Answers

up vote 5 down vote accepted

You can force Visual Studio to ignore the fact that it's code in front you're working with by going to:

Tools | Options

And opening the "Text Editor | File Extensions" tab.

Create a new entry for extension "ashx", mapped to editor "Microsoft Visual C#" (or "Microsoft Visual Basic", as your preference takes you), and "Add" it.

OK the dialog, close and re-open your ashx file, and your code blocks willl collapse to your hearts content, but the @ directive will be rather ugly.

You have the same issue if you have serverside script in the .aspx file (for example in a web site project and you don't "Place code in a seperate file"), then you cannot collapse the class blocks in there either.

link|improve this answer
feedback

Yeah, there is a different solution ;) I tried to put the code in a separate .cs file as you can do with .aspx files, but that was not possible. So the way I handled this now is that I have created a class in the AppCode directory, which the ashx-file just extends... like this:

something.ashx:

<%@ WebHandler Language="C#" Class="Something" %>
public class Something : cSomething {}

And in the AppCode-folder I've created the file cSomething.cs

using.. blabla
public class wsaXmlComm : IHttpHandler
{
    public cSomething()
    {
    }
    public void ProcessRequest(HttpContext c)
    {
etc...

Now I can just open cSomething.cs, edit my C# code with #region collapsing, because the .cs file is opened in the right editor :)

link|improve this answer
That's a very neat little solution :) – Zhaph - Ben Duguid Sep 21 '11 at 15:07
feedback

Add /// in front of first line.

Like this:

///<%@ WebHandler Language="C#" Class="FooBar"%>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.