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?
|
209
|
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? |
|||
|
|
|
|
Similarly to the optimizeCompilations=”true” solution, here another one to speed up the time you spend waiting in between builds (very good especially if you are working with a large project): create a ram-based drive (i.e. using RamDisk) and change your default “Temporary ASP.NET Files” to this memory-based drive. The full details on how to do this is on my blog: http://www.wagnerdanda.me/2009/11/speeding-up-build-times-in-asp-net-with-ramdisk/ Basically you first and configure a RamDisk (again, in my blog there a link to a free ramdisk) and then you change your web.config according to this:
It greatly increase my development time, you just need invest in memory for you computer :) Happy Programming! Wagner Danda |
|||
|
|
|
|
Check to see if the client is still connected, before starting a long-running task:
|
|||
|
|
|
|
MaintainScrollPositionOnPostback attribute in Page directive. It is used to maintain scroll position of aspx page across postbacks. |
|||
|
|
DefaultButton property in Panels. It sets default button for a particular panel. |
|||
|
|
It indicates whether current request is coming from Local Computer or not.
|
||||
|
|
|
One little known and rarely used feature of ASP.NET is: 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 and from that last article:
|
|||
|
|
|
|
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:
|
|||
|
|
|
|
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: |
|||
|
|
My team uses this a lot as a hack:
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. |
||||||||
|
|
|
EnsureChildControls Method : It checks the child controls if they're initiated. If the child controls are not initiated it calls CreateChildControls method. |
|||
|
|
|
|
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:
|
|||
|
|
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. |
|||
|
|
|
|
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:
|
||
|
|
ClientScript property on Page object. |
|||
|
|
|
|
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 |
|||
|
|
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
|
|||
|
|
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. |
||||
|
|
|
Valid syntax that VS chokes on:
|
||
|
|
|
|
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.
|
||||
|
|
|
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. |
|||
|
|
You can find any control by using its UniqueID property:
|
||||
|
|
|
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. |
||
|
|
|
|
While testing, you can have emails sent to a folder on your computer instead of an SMTP server. Put this in your web.config:
|
||||||||
|
|
|
Included in ASP.NET 3.5 SP1:
|
|||
|
|
|
|
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. |
||
|
|
Setting Server Control Properties Based on Target Browser and more. That one kinda took me by surprise. |
||
|
|
|
|
I thought it was neat when I dumped a xmlDocument() into a label and it displayed using it's xsl transforms. |
||
|
|
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. |
||||
|