Hidden Features of ASP.NET - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T14:26:51Z http://stackoverflow.com/feeds/question/54929 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/54929/hidden-features-of-asp-net 109 Hidden Features of ASP.NET Vaibhav 2008-09-10T18:20:47Z 2009-11-15T16:35:23Z <p>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.</p> <p>What are the ones that you know?</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/54931#54931 -2 Answer by Rich B for Hidden Features of ASP.NET Rich B 2008-09-10T18:21:56Z 2008-09-10T18:21:56Z <p>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.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/54932#54932 24 Answer by Allain Lalonde for Hidden Features of ASP.NET Allain Lalonde 2008-09-10T18:22:05Z 2008-09-10T18:22:05Z <p>HttpModules. The architecture is crazy elegant. Maybe not a hidden feature, but cool none the less.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/54937#54937 28 Answer by John Sheehan for Hidden Features of ASP.NET John Sheehan 2008-09-10T18:23:37Z 2008-09-18T05:47:35Z <p>HttpContext.Items as a request-level caching tool</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/54962#54962 14 Answer by Kilhoffer for Hidden Features of ASP.NET Kilhoffer 2008-09-10T18:34:27Z 2008-09-10T18:34:27Z <p>HttpContext.IsCustomErrorEnabled is a cool feature.I've found it useful more than once. Here is a <a href="http://weblogs.asp.net/leftslipper/archive/2008/07/13/httpcontext-iscustomerrorenabled-one-of-asp-net-s-hidden-gems.aspx" rel="nofollow">short post</a> about it.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55112#55112 35 Answer by Radu094 for Hidden Features of ASP.NET Radu094 2008-09-10T19:36:28Z 2008-09-11T09:11:51Z <p>Two things stand out in my head:</p> <p>1) You can turn Trace on and off from the code:</p> <pre><code>#ifdef DEBUG if (Context.Request.QueryString["DoTrace"] == "true") { Trace.IsEnabled = true; Trace.Write("Application:TraceStarted"); } #endif </code></pre> <p>2) You can build multiple .aspx pages using only one shared "code-behind" file.</p> <p>Build one class .cs file :</p> <pre><code>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"; } } </code></pre> <p>and then you can have any number of .aspx pages (after you delete .designer.cs and .cs code-behind that VS has generated) : </p> <pre><code> &lt;%@ Page Language="C#" AutoEventWireup="true" Inherits="Namespace.Class1" %&gt; &lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:TextBox ID="tbLogin" runat="server"&gt;&lt;/asp: TextBox &gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>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.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55176#55176 23 Answer by FlySwat for Hidden Features of ASP.NET FlySwat 2008-09-10T20:04:23Z 2008-09-10T20:04:23Z <p>You can use:</p> <pre><code> Request.Params[Control.UniqueId] </code></pre> <p>To get the value of a control BEFORE viewstate is initialized (Control.Text etc will be empty at this point).</p> <p>This is useful for code in Init.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55195#55195 31 Answer by Mark Cidade for Hidden Features of ASP.NET Mark Cidade 2008-09-10T20:11:14Z 2008-09-11T14:09:29Z <ul> <li><p><strong>HttpContext.Current</strong> 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).</p></li> <li><p>You can continue executing code on the same page after redirecting the user to another one by calling <strong>Response.Redirect(<em>url</em>,</strong> false <strong>)</strong></p></li> <li><p>You don't need <em>.ASPX</em> files if all you want is a compiled <strong>Page</strong> (or any <strong>IHttpHandler</strong>). Just set the path and HTTP methods to point to the class in the <a href="http://tinyurl.com/httpHandlers" rel="nofollow"><em><code>&lt;</code>httpHandlers></em> element</a> in the web.config file.</p></li> <li><p>A <strong>Page</strong> object can be retrieved from an <em>.ASPX</em> file programmatically by calling <strong>PageParser.GetCompiledPageInstance(virtualPath,aspxFileName,Context)</strong></p></li> </ul> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55229#55229 59 Answer by John Sheehan for Hidden Features of ASP.NET John Sheehan 2008-09-10T20:22:33Z 2008-09-10T20:22:33Z <pre><code>throw new HttpException(404, "Article not found"); </code></pre> <p>This will be caught by ASP.NET which will return the customErrors page. Learned about this one in a <a href="http://dotnettipoftheday.org/tips/how-to-respond-with-code-404-not-found-in-aspnet.aspx?discussion=1" rel="nofollow">recent .NET Tip of the Day Post</a></p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55259#55259 10 Answer by Mark Cidade for Hidden Features of ASP.NET Mark Cidade 2008-09-10T20:35:19Z 2008-09-10T20:35:19Z <p>By default, any content between tags for a custom control is added as a child control. This can be intercepted in an <strong>AddParsedSubObject()</strong> override for filtering or additional parsing (e.g., of text content in LiteralControls):</p> <pre><code> protected override void AddParsedSubObject(object obj) { var literal = obj as LiteralControl; if (literal != null) Controls.Add(parseControl(literal.Text)); else base.AddParsedSubObject(obj); } </code></pre> <p>...</p> <pre><code> &lt;uc:MyControl runat='server'&gt; ...this text is parsed as a LiteralControl... &lt;/uc:MyControl&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55310#55310 90 Answer by Troy DeMonbreun for Hidden Features of ASP.NET Troy DeMonbreun 2008-09-10T20:58:16Z 2008-09-23T20:31:41Z <p>If you place a file named <strong>*app_offline.htm*</strong> 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 <em>for all new requests</em>.</p> <p>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.</p> <p>Also, as pointed out by <a href="http://beta.stackoverflow.com/users/1659/marxidad" rel="nofollow">marxidad</a>, make sure you have at least 512 bytes of content within the file so IE6 will render it correctly.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55316#55316 11 Answer by Mark Cidade for Hidden Features of ASP.NET Mark Cidade 2008-09-10T21:02:25Z 2008-09-10T21:02:25Z <p>ScottGu has a bunch of tricks at <a href="http://weblogs.asp.net/scottgu/archive/2006/04/03/441787.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2006/04/03/441787.aspx</a></p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55348#55348 6 Answer by Kevin Goff for Hidden Features of ASP.NET Kevin Goff 2008-09-10T21:19:18Z 2008-09-10T21:19:18Z <p>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 &lt;@Page> at the bottom of the page. </p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/55356#55356 6 Answer by Paulj for Hidden Features of ASP.NET Paulj 2008-09-10T21:25:13Z 2008-09-10T21:25:13Z <p>I thought it was neat when I dumped a xmlDocument() into a label and it displayed using it's xsl transforms.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/58445#58445 4 Answer by Omer van Kloeten for Hidden Features of ASP.NET Omer van Kloeten 2008-09-12T07:25:26Z 2008-09-12T07:25:26Z <p><a href="http://ryanfarley.com/blog/archive/2008/08/14/set-browser-specific-asp.net-server-control-properties-and-taking-an.aspx" rel="nofollow">Setting Server Control Properties Based on Target Browser</a> and <a href="http://ryanfarley.com/blog/archive/2008/08/14/more-on-device-filtering-with-asp.net-server-control-properties.aspx" rel="nofollow">more</a>. That one kinda took me by surprise.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/61100#61100 9 Answer by Tyler for Hidden Features of ASP.NET Tyler 2008-09-14T03:27:38Z 2008-09-14T03:27:38Z <p>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).</p> <p>Urls like <a href="http://servername/page/Param1/SomeParams1/Param2/SomeParams2" rel="nofollow">http://servername/page/Param1/SomeParams1/Param2/SomeParams2</a> would get mapped to another page like below (often using regular expressions).</p> <pre><code>HttpContext.RewritePath("PageHandler.aspx?Param1=SomeParms1&amp;Param2=SomeParams2"); </code></pre> <p>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.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/75162#75162 8 Answer by John Sheehan for Hidden Features of ASP.NET John Sheehan 2008-09-16T18:03:26Z 2008-09-16T18:03:26Z <p>Included in ASP.NET 3.5 SP1:</p> <ul> <li>customErrors now supports "redirectMode" attribute with a value of "ResponseRewrite". Shows error page without changing URL.</li> <li>The form tag now recognizes the action attribute. Great for when you're using URL rewriting</li> </ul> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/75170#75170 152 Answer by John Sheehan for Hidden Features of ASP.NET John Sheehan 2008-09-16T18:04:09Z 2008-09-16T18:04:09Z <p>While testing, you can have emails sent to a folder on your computer instead of an SMTP server. Put this in your web.config:</p> <pre><code>&lt;system.net&gt; &lt;mailSettings&gt; &lt;smtp deliveryMethod="SpecifiedPickupDirectory"&gt; &lt;specifiedPickupDirectory pickupDirectoryLocation="c:\Temp\" /&gt; &lt;/smtp&gt; &lt;/mailSettings&gt; &lt;/system.net&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/123762#123762 3 Answer by roosteronacid for Hidden Features of ASP.NET roosteronacid 2008-09-23T20:47:44Z 2008-09-23T20:47:44Z <p>Attach a class located in your App_Code folder to your Global Application Class file.</p> <p><a href="http://aspadvice.com/blogs/kiran/archive/2005/12/11/14301.aspx" rel="nofollow">ASP.NET 2.0 - Global.asax - Code Behind file</a>.</p> <p>This works in Visual Studio 2008 as well.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/170091#170091 5 Answer by korchev for Hidden Features of ASP.NET korchev 2008-10-04T10:27:02Z 2008-10-04T10:27:02Z <p>You can find any control by using its <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.uniqueid.aspx" rel="nofollow">UniqueID</a> property:</p> <pre><code>Label label = (Label)Page.FindControl("UserControl1$Label1"); </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/177078#177078 9 Answer by John Sheehan for Hidden Features of ASP.NET John Sheehan 2008-10-07T02:54:18Z 2008-10-07T02:54:18Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.httpcontext.isdebuggingenabled.aspx" rel="nofollow">HttpContext.Current.IsDebuggingEnabled</a></p> <p>This is great for determining which scripts to output (min or full versions) or anything else you might want in dev, but not live.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/191506#191506 12 Answer by Chris Pietschmann for Hidden Features of ASP.NET Chris Pietschmann 2008-10-10T14:14:19Z 2008-10-10T14:14:19Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.virtualpathutility_methods.aspx" rel="nofollow">System.Web.VirtualPathUtility</a></p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/194142#194142 17 Answer by Chris Pietschmann for Hidden Features of ASP.NET Chris Pietschmann 2008-10-11T14:41:30Z 2008-10-11T14:41:30Z <p>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.</p> <pre><code>&lt;%-- &lt;div&gt; &lt;asp:Button runat="server" id="btnOne"/&gt; &lt;/div&gt; --%&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/194153#194153 5 Answer by leppie for Hidden Features of ASP.NET leppie 2008-10-11T14:50:37Z 2008-10-11T14:50:37Z <p>Valid syntax that VS chokes on:</p> <pre><code>&lt;input type="checkbox" name="roles" value='&lt;%# Eval("Name") %&gt;' &lt;%# ((bool) Eval("InRole")) ? "checked" : "" %&gt; &lt;%# ViewData.Model.IsInRole("Admin") ? "" : "disabled" %&gt; /&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/384970#384970 9 Answer by Craig McKeachie for Hidden Features of ASP.NET Craig McKeachie 2008-12-21T21:22:41Z 2008-12-21T22:14:30Z <p>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.</p> <p>The below explanation is from: <a href="http://www.guidanceshare.com/wiki/ASP.NET_2.0_Security_Guidelines_-_Parameter_Manipulation#Consider_Using_Page.ViewStateUserKey_to_Counter_One-Click_Attacks" rel="nofollow">http://www.guidanceshare.com/wiki/ASP.NET_2.0_Security_Guidelines_-_Parameter_Manipulation#Consider_Using_Page.ViewStateUserKey_to_Counter_One-Click_Attacks</a></p> <p>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.</p> <pre><code>void Page_Init (object sender, EventArgs e) { ViewStateUserKey = Session.SessionID; } </code></pre> <p>Set the property to a value you know is unique to each user, such as a session ID, user name, or user identifier.</p> <p>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.</p> <p>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. </p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/491233#491233 16 Answer by Binoj Antony for Hidden Features of ASP.NET Binoj Antony 2009-01-29T11:06:23Z 2009-01-29T11:24:01Z <p>Usage of the ASHX file type: <br /> 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</p> <p>Name the page as SomeHandlerPage.ashx and just put the below code (just one line) in it</p> <pre><code>&lt;%@ webhandler language="C#" class="MyNamespace.MyHandler" %&gt; </code></pre> <p>Then the code file</p> <pre><code>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; } } } } </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/491262#491262 34 Answer by Binoj Antony for Hidden Features of ASP.NET Binoj Antony 2009-01-29T11:23:17Z 2009-05-23T02:24:44Z <p>Enabling <strong>intellisense for MasterPages</strong> in the content pages <br /> I am sure this is a very little known hack</p> <p>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 <strong>MasterType</strong> directive will enable intellisense in visual studio once you to this</p> <p>just add one more directive to the page</p> <pre><code>&lt;%@ MasterType VirtualPath="~/Masters/MyMainMasterPage.master" %&gt; </code></pre> <p>If you do not want to use the Virtual Path and use the class name instead then </p> <pre><code>&lt;%@ MasterType TypeName="MyMainMasterPage" %&gt; </code></pre> <p>Get the full article <a href="http://www.simple-talk.com/content/print.aspx?article=398" rel="nofollow">here</a></p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/515056#515056 2 Answer by Canavar for Hidden Features of ASP.NET Canavar 2009-02-05T08:40:17Z 2009-02-05T08:40:17Z <p><a href="http://msdn.microsoft.com/en-us/library/3hc29e2a.aspx" rel="nofollow">ClientScript</a> property on Page object.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/572275#572275 10 Answer by Andrew Robinson for Hidden Features of ASP.NET Andrew Robinson 2009-02-21T04:28:43Z 2009-02-21T04:28:43Z <p><strong>The Code Expression Builder (and others)</strong> </p> <p>Sample markup:</p> <pre><code>Text = '&lt;%$ Code: GetText() %&gt;' Text = '&lt;%$ Code: MyStaticClass.MyStaticProperty %&gt;' Text = '&lt;%$ Code: DateTime.Now.ToShortDateString() %&gt;' MaxLenth = '&lt;%$ Code: 30 + 40 %&gt;' </code></pre> <p>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.</p> <p>web.config:</p> <pre><code>&lt;system.web&gt; &lt;compilation debug="true"&gt; &lt;expressionBuilders&gt; &lt;add expressionPrefix="Code" type="CodeExpressionBuilder" /&gt; </code></pre> <p>The cs class that makes it all happen:</p> <pre><code>[ExpressionPrefix("Code")] public class CodeExpressionBuilder : ExpressionBuilder { public override CodeExpression GetCodeExpression( BoundPropertyEntry entry, object parsedData, ExpressionBuilderContext context) { return new CodeSnippetExpression(entry.Expression); } } </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/574030#574030 4 Answer by John for Hidden Features of ASP.NET John 2009-02-22T00:33:52Z 2009-02-22T00:33:52Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.hosting.hostingenvironment.mappath.aspx" rel="nofollow">System.Web.Hosting.HostingEnvironment.MapPath</a></p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/818365#818365 7 Answer by Troy Hunt for Hidden Features of ASP.NET Troy Hunt 2009-05-03T23:50:50Z 2009-05-03T23:50:50Z <p>Retail mode at the machine.config level:</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;deployment retail="true"/&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>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.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/989225#989225 4 Answer by Khaled Musaied for Hidden Features of ASP.NET Khaled Musaied 2009-06-12T21:46:51Z 2009-06-12T21:46:51Z <p>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 <strong>javascript</strong> or using this simple code:</p> <pre><code>if (Request.Browser.Crawler){ HideArticleComments(); </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1000605#1000605 3 Answer by Canavar for Hidden Features of ASP.NET Canavar 2009-06-16T10:10:20Z 2009-06-16T10:10:20Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.ensurechildcontrols.aspx" rel="nofollow">EnsureChildControls Method</a> : It checks the child controls if they're initiated. If the child controls are not initiated it calls CreateChildControls method.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1069756#1069756 0 Answer by Graham for Hidden Features of ASP.NET Graham 2009-07-01T15:20:37Z 2009-07-01T15:20:37Z <p>My team uses this a lot as a hack:</p> <p>WebRequest myRequest = WebRequest.Create("http://www.google.com"); WebResponse myResponse = myRequest.GetResponse(); StreamReader sr = new StreamReader(myResponse.GetResponseStream());</p> <p>// here's page's response loaded into a string for further use</p> <p>String thisReturn = sr.ReadToEnd().Trim();</p> <p>It loads a webpage's response as a string. You can send in post parameters too. </p> <p>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. </p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1078420#1078420 13 Answer by Scott Hanselman for Hidden Features of ASP.NET Scott Hanselman 2009-07-03T08:45:22Z 2009-07-03T08:45:22Z <p>Here's the best one. Add this to your web.config for MUCH faster compilation. This is post 3.5SP1 via <a href="http://support.microsoft.com/kb/961884" rel="nofollow">this QFE</a>.</p> <pre><code>&lt;compilation optimizeCompilations="true"&gt; </code></pre> <blockquote> <p>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.</p> <p>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.</p> <p>To ease the pain, we added an ‘optimized’ compilation mode which takes a much less conservative approach to recompilation.</p> </blockquote> <p>Via <a href="http://blogs.msdn.com/davidebb/archive/2009/04/15/a-new-flag-to-optimize-asp-net-compilation-behavior.aspx" rel="nofollow">here</a>: </p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1161881#1161881 9 Answer by Dan Diplo for Hidden Features of ASP.NET Dan Diplo 2009-07-21T21:33:28Z 2009-07-21T21:33:28Z <p><strong>WebMethods.</strong></p> <p>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:</p> <pre><code>[System.Web.Services.WebMethod()] [System.Web.Script.Services.ScriptMethod()] public static List&lt;string&gt; GetFruitBeginingWith(string letter) { List&lt;string&gt; products = new List&lt;string&gt;() { "Apple", "Banana", "Blackberry", "Blueberries", "Orange", "Mango", "Melon", "Peach" }; return products.Where(p =&gt; p.StartsWith(letter)).ToList(); } </code></pre> <p>Now, in your ASPX page you can do this:</p> <pre><code>&lt;form id="form1" runat="server"&gt; &lt;div&gt; &lt;asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" /&gt; &lt;input type="button" value="Get Fruit" onclick="GetFruit('B')" /&gt; &lt;/div&gt; &lt;/form&gt; </code></pre> <p>And call your server side method via JavaScript using:</p> <pre><code> &lt;script type="text/javascript"&gt; function GetFruit(l) { PageMethods.GetFruitBeginingWith(l, OnGetFruitComplete); } function OnGetFruitComplete(result) { alert("You got fruit: " + result); } &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1205724#1205724 4 Answer by CraigTP for Hidden Features of ASP.NET CraigTP 2009-07-30T10:24:22Z 2009-07-30T10:24:22Z <p>One little known and rarely used feature of ASP.NET is:</p> <p><a href="http://madskristensen.net/post/Tag-mapping-in-ASPNET.aspx" rel="nofollow">Tag Mapping</a></p> <p>It's rarely used because there's only a specific situation where you'd need it, but when you need it, it's <em>so</em> handy.</p> <p>Some articles about this little know feature:</p> <p><a href="http://madskristensen.net/post/Tag-mapping-in-ASPNET.aspx" rel="nofollow">Tag Mapping in ASP.NET</a><br /> <a href="http://www.fmsinc.com/free/NewTips/NET/tag%5Fmapping.html" rel="nofollow">Using Tag Mapping in ASP.NET 2.0</a></p> <p>and from that last article:</p> <blockquote> <p>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:</p> </blockquote> <pre><code>&lt;pages&gt; &lt;tagMapping&gt; &lt;clear /&gt; &lt;add tagType="System.Web.UI.WebControls.DropDownList" mappedTagType="SmartDropDown"/&gt; &lt;/tagMapping&gt; &lt;/pages&gt; </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1355965#1355965 1 Answer by Mahin for Hidden Features of ASP.NET Mahin 2009-08-31T05:44:28Z 2009-08-31T05:51:25Z <p><strong><a href="http://msdn.microsoft.com/en-us/library/system.web.httprequest.islocal.aspx" rel="nofollow">Request.IsLocal Property :</a></strong></p> <p>It indicates whether current request is coming from Local Computer or not. </p> <pre><code>if( Request.IsLocal ) { LoadLocalAdminMailSettings(); } else { LoadServerAdminMailSettings(); } </code></pre> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1357104#1357104 2 Answer by Mahin for Hidden Features of ASP.NET Mahin 2009-08-31T11:55:40Z 2009-08-31T11:55:40Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.panel.defaultbutton.aspx" rel="nofollow">DefaultButton</a> property in Panels.</p> <p>It sets default button for a particular panel.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1357122#1357122 1 Answer by Mahin for Hidden Features of ASP.NET Mahin 2009-08-31T11:59:39Z 2009-08-31T11:59:39Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.page.maintainscrollpositiononpostback.aspx" rel="nofollow">MaintainScrollPositionOnPostback</a> attribute in Page directive. It is used to maintain scroll position of aspx page across postbacks.</p> http://stackoverflow.com/questions/54929/hidden-features-of-asp-net/1738028#1738028 1 Answer by RickNZ for Hidden Features of ASP.NET RickNZ 2009-11-15T16:35:23Z 2009-11-15T16:35:23Z <p>Check to see if the client is still connected, before starting a long-running task:</p> <pre><code>if (this.Response.IsClientConnected) { // long-running task } </code></pre>