January 25, 2005

Configure IIS for Debugging ASP Pages in Interdev

In order to debug ASP pages in Visual Interdev, you need to change some some IIS settings. Open the Internet Service Manager console (using the inetmgr command on Start?>Run). Right click the Web site you plan to debug and select Properties. Make sure the Application Protection is set to Low

Use Page Tracing to Obtain Information About Your Executing Web Page

Say goodbye to inline Response.Write statements for debugging in ASP.NET! In addition to its built-in debugging capabilities, Visual Studio .NET also supports a new mechanism for run-time debugging, called page tracing. To enable or disable page-level tracing, access the HTML code of your ASPX page. Modify the Pagestatement to include:

Master the Time-saving Power of Flash Components, Part 1

ow often have you found yourself repeating the same tasks in Flash over and over? Perhaps you’ve recreated a logo or animation, or rewritten some simple script again and again. Wouldn’t it be great if you could drag and drop a widget into your file and just have it work?

The reverse() Algorithm

You can use this algorithm to reverse the order of elements in any sequence container. It takes two bidirectional iterators as argument: int iArr [] = {1, 2, 3, 4, 6, 7}; #include //for reverse reverse(iArr, iArr+7); //iArr has now the reversed sequence 7, 6, 4, 3, 2, 1 As