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?
|
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? |
|||
|
|
|
|
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. |
||||||||
|
|
|
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):
...
|
||
|
|
|
|
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 |
|||
|
|
|
||||
|
|
|
You can use:
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. |
||
|
|
|
|
Two things stand out in my head: 1) You can turn Trace on and off from the code:
2) You can build multiple .aspx pages using only one shared "code-behind" file. Build one class .cs file :
and then you can have any number of .aspx pages (after you delete .designer.cs and .cs code-behind that VS has generated) :
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. |
||||||||
|
|
|
HttpContext.IsCustomErrorEnabled is a cool feature.I've found it useful more than once. Here is a short post about it. |
||
|
|
|
|
HttpContext.Items as a request-level caching tool |
||||
|
|
|
HttpModules. The architecture is crazy elegant. Maybe not a hidden feature, but cool none the less. |
||||
|
|
|
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. |
||