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 4 vote down

One little known and rarely used feature of ASP.NET is:

Tag Mapping

It's rarely used because there's only a specific situation where you'd need it, but when you need it, it's so handy.

Some articles about this little know feature:

Tag Mapping in ASP.NET
Using Tag Mapping in ASP.NET 2.0

and from that last article:

Tag mapping allows you to swap compatible controls at compile time on every page in your web application. A useful example is if you have a stock ASP.NET control, such as a DropDownList, and you want to replace it with a customized control that is derived from DropDownList. This could be a control that has been customized to provide more optimized caching of lookup data. Instead of editing every web form and replacing the built in DropDownLists with your custom version, you can have ASP.NET in effect do it for you by modifying web.config:

<pages>
 <tagMapping>
   <clear />
   <add tagType="System.Web.UI.WebControls.DropDownList"
        mappedTagType="SmartDropDown"/>
  </tagMapping>
</pages>
link|flag
vote up 3 vote down

Attach a class located in your App_Code folder to your Global Application Class file.

ASP.NET 2.0 - Global.asax - Code Behind file.

This works in Visual Studio 2008 as well.

link|flag
vote up 3 vote down

EnsureChildControls Method : It checks the child controls if they're initiated. If the child controls are not initiated it calls CreateChildControls method.

link|flag
vote up 2 vote down

ClientScript property on Page object.

link|flag
vote up 2 vote down

DefaultButton property in Panels.

It sets default button for a particular panel.

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

Request.IsLocal Property :

It indicates whether current request is coming from Local Computer or not.

if( Request.IsLocal )
{
   LoadLocalAdminMailSettings();
}
else
{
   LoadServerAdminMailSettings();
}
link|flag
2  
Please also check the following discussion on asp.net forums about security concerns while using Request.IsLocal property forums.asp.net/t/1065813.aspx – Mahin Aug 31 at 12:34
vote up 1 vote down

MaintainScrollPositionOnPostback attribute in Page directive. It is used to maintain scroll position of aspx page across postbacks.

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

Check to see if the client is still connected, before starting a long-running task:

if (this.Response.IsClientConnected)
{
  // long-running task
}
link|flag
vote up 0 vote down

My team uses this a lot as a hack:

WebRequest myRequest = WebRequest.Create("http://www.google.com"); WebResponse myResponse = myRequest.GetResponse(); StreamReader sr = new StreamReader(myResponse.GetResponseStream());

// here's page's response loaded into a string for further use

String thisReturn = sr.ReadToEnd().Trim();

It loads a webpage's response as a string. You can send in post parameters too.

We use it in the place of ASCX/AJAX/WebServices when we need something cheap and fast. Basically, its a quick way to access web-available content across servers. In fact, we just dubbed it the "Redneck Web Service" yesterday.

link|flag
1  
Yep, that's pretty ghetto. ;) – Scott Hanselman Jul 3 at 8:42
2  
You know about the System.Net.WebClient class also, right? – Joel Coehoorn Jul 13 at 21:48
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.