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? |
|||
|
|
|
|
While testing, you can have emails sent to a folder on your computer instead of an SMTP server. Put this in your web.config:
|
||||
|
|
|
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. |
||||||||
|
|
|
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 |
|||
|
|
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. |
||||||||
|
|
|
Enabling intellisense for MasterPages in the content pages 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
If you do not want to use the Virtual Path and use the class name instead then
Get the full article here |
|||
|
|
|
||||
|
|
|
HttpContext.Items as a request-level caching tool |
||||
|
|
|
HttpModules. The architecture is crazy elegant. Maybe not a hidden feature, but cool none the less. |
||||
|
|
|
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. |
||
|
|
|
|
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.
|
||||
|
|
|
Usage of the ASHX file type: Name the page as SomeHandlerPage.ashx and just put the below code (just one line) in it
Then the code file
|
|||
|
|
HttpContext.IsCustomErrorEnabled is a cool feature.I've found it useful more than once. Here is a short post about it. |
||
|
|
|
|
Here's the best one. Add this to your web.config for MUCH faster compilation. This is post 3.5SP1 via this QFE.
Via here: |
|||
|
|
ScottGu has a bunch of tricks at http://weblogs.asp.net/scottgu/archive/2006/04/03/441787.aspx |
||
|
|
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):
...
|
||
|
|
|
|
The Code Expression Builder (and others) Sample markup:
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:
The cs class that makes it all happen:
|
||
|
|
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).
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. |
||
|
|
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. |
|||
|
|
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.
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. |
||||
|
|
|
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:
Now, in your ASPX page you can do this:
And call your server side method via JavaScript using:
|
|||
|
|
|
|
Included in ASP.NET 3.5 SP1:
|
|||
|
|
|
|
Retail mode at the machine.config level:
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. |
|||
|
|
|
|
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. |
||||
|
|
|
I thought it was neat when I dumped a xmlDocument() into a label and it displayed using it's xsl transforms. |
||
|
|
You can find any control by using its UniqueID property:
|
||||
|
|
|
Valid syntax that VS chokes on:
|
||
|
|
|
|
Setting Server Control Properties Based on Target Browser and more. That one kinda took me by surprise. |
||
|
|
|
|
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:
|
|||