vote up 109 vote down star
204

There are always features that would be useful in fringe scenarios, but for that very reason most people don't know them. I am asking for features that are not typically taught by the text books.

What are the ones that you know?

flag
show 3 more comments

40 Answers

prev 1 2
vote up 89 vote down

If you place a file named *app_offline.htm* in the root of a web application directory, ASP.NET 2.0+ will shut-down the application and stop normal processing any new incoming requests for that application, showing only the contents of the app_offline.htm file for all new requests.

This is the quickest and easiest way to display your "Site Temporarily Unavailable" notice while re-deploying (or rolling back) changes to a Production server.

Also, as pointed out by marxidad, make sure you have at least 512 bytes of content within the file so IE6 will render it correctly.

link|flag
4  
Don't forget the workaround for IE's "friendly" messages: tinyurl.com/app-offline-friendly – Mark Cidade Sep 10 '08 at 21:01
1  
Ouch! Be careful when using this with MOSS 2007. It will only work for pages that have been accessed since the last IIS restart. So, if you add this page to your wss virtual root, then try to open a page that hadn't been accessed previously, you will get a 404. – Marc Jun 10 at 20:34
show 3 more comments
vote up 10 vote down

By default, any content between tags for a custom control is added as a child control. This can be intercepted in an AddParsedSubObject() override for filtering or additional parsing (e.g., of text content in LiteralControls):

    protected override void AddParsedSubObject(object obj)
     { var literal = obj as LiteralControl;
       if (literal != null) Controls.Add(parseControl(literal.Text));
       else base.AddParsedSubObject(obj);
     }

...

   <uc:MyControl runat='server'>
     ...this text is parsed as a LiteralControl...
  </uc:MyControl>
link|flag
vote up 59 vote down
throw new HttpException(404, "Article not found");

This will be caught by ASP.NET which will return the customErrors page. Learned about this one in a recent .NET Tip of the Day Post

link|flag
show 5 more comments
vote up 31 vote down
  • HttpContext.Current will always give you access to the current context's Request/Response/etc., even when you don't have access to the Page's properties (e.g., from a loosely-coupled helper class).

  • You can continue executing code on the same page after redirecting the user to another one by calling Response.Redirect(url, false )

  • You don't need .ASPX files if all you want is a compiled Page (or any IHttpHandler). Just set the path and HTTP methods to point to the class in the <httpHandlers> element in the web.config file.

  • A Page object can be retrieved from an .ASPX file programmatically by calling PageParser.GetCompiledPageInstance(virtualPath,aspxFileName,Context)

link|flag
1  
If you want to redirect the user to a different address but still have some back-end processing to do (e.g., a report generation request that redirects to the report's generation status page while it continues to generate the report in the background) – Mark Cidade Apr 15 at 18:58
show 3 more comments
vote up 23 vote down

You can use:

 Request.Params[Control.UniqueId]

To get the value of a control BEFORE viewstate is initialized (Control.Text etc will be empty at this point).

This is useful for code in Init.

link|flag
vote up 35 vote down

Two things stand out in my head:

1) You can turn Trace on and off from the code:

#ifdef DEBUG 
   if (Context.Request.QueryString["DoTrace"] == "true")
                {
                    Trace.IsEnabled = true;
                    Trace.Write("Application:TraceStarted");
                }
#endif

2) You can build multiple .aspx pages using only one shared "code-behind" file.

Build one class .cs file :

public class Class1:System.Web.UI.Page
    {
        public TextBox tbLogin;

        protected void Page_Load(object sender, EventArgs e)
        {

          if (tbLogin!=null)
            tbLogin.Text = "Hello World";
        }
    }

and then you can have any number of .aspx pages (after you delete .designer.cs and .cs code-behind that VS has generated) :

  <%@ Page Language="C#"  AutoEventWireup="true"  Inherits="Namespace.Class1" %>
     <form id="form1" runat="server">
     <div>
     <asp:TextBox  ID="tbLogin" runat="server"></asp: TextBox  >
     </div>
     </form>

You can have controls in the ASPX that do not appear in Class1, and vice-versa, but you need to remeber to check your controls for nulls.

link|flag
3  
Does anyone else think its a security risk to allow you to activate a trace from a url? (#1) I'm not going to downvote this question, but its important to understand the risk there. – Kevin Goff Sep 10 '08 at 21:16
2  
Absolutelly, you should really put that code in a #ifdef DEBUG #endif block – Radu094 Sep 11 '08 at 8:59
show 2 more comments
vote up 14 vote down

HttpContext.IsCustomErrorEnabled is a cool feature.I've found it useful more than once. Here is a short post about it.

link|flag
vote up 28 vote down

HttpContext.Items as a request-level caching tool

link|flag
1  
This was going to be my point as well, i use this in nested controlls to pass/receive request level information. Ii also use this in MVC to store a list of js files to append, based in partial views. – Tracker1 May 23 at 3:30
show 1 more comment
vote up 24 vote down

HttpModules. The architecture is crazy elegant. Maybe not a hidden feature, but cool none the less.

link|flag
1  
HttpModules is something that is advanced, but I wouldn't call it rare or less used (or call me naive). But yes, I love the architecture. – Vaibhav Sep 10 '08 at 18:25
vote up -2 vote down

This seems like a huge, vague question... But I will throw in Reflection, as it has allowed me to do some incredibly powerful things like pluggable DALs and such.

link|flag
show 3 more comments
prev 1 2

Your Answer

Get an OpenID
or

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