vote up 107 vote down star
199

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

39 Answers

1 2 next
vote up 148 vote down

While testing, you can have emails sent to a folder on your computer instead of an SMTP server. Put this in your web.config:

<system.net>
    <mailSettings>
        <smtp deliveryMethod="SpecifiedPickupDirectory">
            <specifiedPickupDirectory pickupDirectoryLocation="c:\Temp\" />
        </smtp>
    </mailSettings>
</system.net>
link|flag
show 8 more comments
vote up 87 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 57 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 34 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
2  
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 34 vote down

Enabling intellisense for MasterPages in the content pages
I am sure this is a very little known hack

Most of the time you have to use the findcontrol method and cast the controls in master page from the content pages when you want to use them, the MasterType directive will enable intellisense in visual studio once you to this

just add one more directive to the page

<%@ MasterType VirtualPath="~/Masters/MyMainMasterPage.master" %>

If you do not want to use the Virtual Path and use the class name instead then

<%@ MasterType TypeName="MyMainMasterPage" %>

Get the full article here

link|flag
show 1 more comment
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 27 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 23 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 22 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 16 vote down

You can use ASP.NET Comments within an .aspx page to comment out full parts of a page including server controls. And the contents that is commented out will never be sent to the client.

<%--
    <div>
        <asp:Button runat="server" id="btnOne"/>
    </div>
--%>
link|flag
show 4 more comments
vote up 16 vote down

Usage of the ASHX file type:
If you want to just output some basic html or xml without going through the page event handlers then you can implement the HttpModule in a simple fashion

Name the page as SomeHandlerPage.ashx and just put the below code (just one line) in it

<%@ webhandler language="C#" class="MyNamespace.MyHandler" %>

Then the code file

using System;
using System.IO;
using System.Web;

namespace MyNamespace
{
    public class MyHandler: IHttpHandler
    {
    	public void ProcessRequest (HttpContext context)
    	{   
    		context.Response.ContentType = "text/xml";
    		string myString = SomeLibrary.SomeClass.SomeMethod();
    		context.Response.Write(myString);
    	}

    	public bool IsReusable
    	{
    		get { return true; }
    	}
    }
}
link|flag
show 1 more comment
vote up 13 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 11 vote down

ScottGu has a bunch of tricks at http://weblogs.asp.net/scottgu/archive/2006/04/03/441787.aspx

link|flag
show 1 more comment
vote up 11 vote down

System.Web.VirtualPathUtility

link|flag
vote up 11 vote down

Here's the best one. Add this to your web.config for MUCH faster compilation. This is post 3.5SP1 via this QFE.

<compilation optimizeCompilations="true">

Quick summary: we are introducing a new optimizeCompilations switch in ASP.NET that can greatly improve the compilation speed in some scenarios. There are some catches, so read on for more details. This switch is currently available as a QFE for 3.5SP1, and will be part of VS 2010.

The ASP.NET compilation system takes a very conservative approach which causes it to wipe out any previous work that it has done any time a ‘top level’ file changes. ‘Top level’ files include anything in bin and App_Code, as well as global.asax. While this works fine for small apps, it becomes nearly unusable for very large apps. E.g. a customer was running into a case where it was taking 10 minutes to refresh a page after making any change to a ‘bin’ assembly.

To ease the pain, we added an ‘optimized’ compilation mode which takes a much less conservative approach to recompilation.

Via here:

link|flag
show 2 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 9 vote down

Before ASP.NET v3.5 added routes you could create your own friendly URLs simply by writing an HTTPModule to and rewrite the request early in the page pipeline (like the BeginRequest event).

Urls like http://servername/page/Param1/SomeParams1/Param2/SomeParams2 would get mapped to another page like below (often using regular expressions).

HttpContext.RewritePath("PageHandler.aspx?Param1=SomeParms1&Param2=SomeParams2");

DotNetNuke has a really good HttpModule that does this for their friendly urls. Is still useful for machines where you can't deploy .NET v3.5.

link|flag
show 2 more comments
vote up 9 vote down

HttpContext.Current.IsDebuggingEnabled

This is great for determining which scripts to output (min or full versions) or anything else you might want in dev, but not live.

link|flag
show 2 more comments
vote up 9 vote down

I worked on a asp.net application which went through a security audit by a leading security company and I learned this easy trick to preventing a lesser known but important security vulnerability.

The below explanation is from: http://www.guidanceshare.com/wiki/ASP.NET_2.0_Security_Guidelines_-_Parameter_Manipulation#Consider_Using_Page.ViewStateUserKey_to_Counter_One-Click_Attacks

Consider using Page.ViewStateUserKey to counter one-click attacks. If you authenticate your callers and use ViewState, set the Page.ViewStateUserKey property in the Page_Init event handler to prevent one-click attacks.

void Page_Init (object sender, EventArgs e) {
  ViewStateUserKey = Session.SessionID;
}

Set the property to a value you know is unique to each user, such as a session ID, user name, or user identifier.

A one-click attack occurs when an attacker creates a Web page (.htm or .aspx) that contains a hidden form field named __VIEWSTATE that is already filled with ViewState data. The ViewState can be generated from a page that the attacker had previously created, such as a shopping cart page with 100 items. The attacker lures an unsuspecting user into browsing to the page, and then the attacker causes the page to be sent to the server where the ViewState is valid. The server has no way of knowing that the ViewState originated from the attacker. ViewState validation and HMACs do not counter this attack because the ViewState is valid and the page is executed under the security context of the user.

By setting the ViewStateUserKey property, when the attacker browses to a page to create the ViewState, the property is initialized to his or her name. When the legitimate user submits the page to the server, it is initialized with the attacker's name. As a result, the ViewState HMAC check fails and an exception is generated.

link|flag
1  
Also remember to leave base.OnInit(e); for the Page_Init() function to do its job. – Druid Sep 13 at 15:59
vote up 9 vote down

The Code Expression Builder (and others)

Sample markup:

Text = '<%$ Code: GetText() %>'
Text = '<%$ Code: MyStaticClass.MyStaticProperty %>'
Text = '<%$ Code: DateTime.Now.ToShortDateString() %>'
MaxLenth = '<%$ Code: 30 + 40 %>'

The real beauty of the code expression builder is that you can use databinding like expressions in non-databinding situations. You can also create other Expression Builders that perform other functions.

web.config:

<system.web>    
    <compilation debug="true">
        <expressionBuilders>
            <add expressionPrefix="Code" type="CodeExpressionBuilder" />

The cs class that makes it all happen:

[ExpressionPrefix("Code")]
public class CodeExpressionBuilder : ExpressionBuilder
{
    public override CodeExpression GetCodeExpression(
        BoundPropertyEntry entry,
        object parsedData,
        ExpressionBuilderContext context)
    {            
        return new CodeSnippetExpression(entry.Expression);
    }
}
link|flag
show 2 more comments
vote up 7 vote down

Included in ASP.NET 3.5 SP1:

  • customErrors now supports "redirectMode" attribute with a value of "ResponseRewrite". Shows error page without changing URL.
  • The form tag now recognizes the action attribute. Great for when you're using URL rewriting
link|flag
vote up 7 vote down

Retail mode at the machine.config level:

<configuration>
  <system.web>
    <deployment retail="true"/>
  </system.web>
</configuration>

Overrides the web.config settings to enforce debug to false, turns custom errors on and disables tracing. No more forgetting to change attributes before publishing - just leave them all configured for development or test environments and update the production retail setting.

link|flag
vote up 7 vote down

WebMethods.

You can using ASP.NET AJAX callbacks to web methods placed in ASPX pages. You can decorate a static method with the [WebMethod()] and [ScriptMethod()] attributes. For example:

[System.Web.Services.WebMethod()] 
[System.Web.Script.Services.ScriptMethod()] 
public static List<string> GetFruitBeginingWith(string letter)
{
	List<string> products = new List<string>() 
	{ 
		"Apple", "Banana", "Blackberry", "Blueberries", "Orange", "Mango", "Melon", "Peach"
	};

	return products.Where(p => p.StartsWith(letter)).ToList();
}

Now, in your ASPX page you can do this:

<form id="form1" runat="server">
	<div>
		<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" />
		<input type="button" value="Get Fruit" onclick="GetFruit('B')" />
	</div>
</form>

And call your server side method via JavaScript using:

    <script type="text/javascript">
	function GetFruit(l)
	{
		PageMethods.GetFruitBeginingWith(l, OnGetFruitComplete);
	}

	function OnGetFruitComplete(result)
	{
		alert("You got fruit: " + result);
	}
</script>
link|flag
vote up 6 vote down

If you have asp.net generating an RSS feed, it will sometimes put an extra line at the top of the page. This won't validate with common RSS validators. You can workaround it by putting the page directive <@Page> at the bottom of the page.

link|flag
show 2 more comments
vote up 6 vote down

I thought it was neat when I dumped a xmlDocument() into a label and it displayed using it's xsl transforms.

link|flag
show 1 more comment
vote up 5 vote down

You can find any control by using its UniqueID property:

Label label = (Label)Page.FindControl("UserControl1$Label1");
link|flag
3  
True, but hardcoding the unique ID is bad as it is prone to change between .net runtimes. – David McEwing May 3 at 23:56
vote up 5 vote down

Valid syntax that VS chokes on:

<input type="checkbox" name="roles" value='<%# Eval("Name") %>' 
  <%# ((bool) Eval("InRole")) ? "checked" : "" %> 
  <%# ViewData.Model.IsInRole("Admin") ? "" : "disabled" %> />
link|flag
vote up 4 vote down

Setting Server Control Properties Based on Target Browser and more. That one kinda took me by surprise.

link|flag
vote up 4 vote down

System.Web.Hosting.HostingEnvironment.MapPath

link|flag
vote up 4 vote down

one feature came to my mind, sometimes you will need to hide some part of your page from the crowlers. you can do it with javascript or using this simple code:

if (Request.Browser.Crawler){
        HideArticleComments();
link|flag
show 1 more comment
1 2 next

Your Answer

Get an OpenID
or

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