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? |
|||
|
|
|
|
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:
|
|||
|
|
|
|
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. |
||
|
|
|
|
EnsureChildControls Method : It checks the child controls if they're initiated. If the child controls are not initiated it calls CreateChildControls method. |
|||
|
|
|
|
ClientScript property on Page object. |
|||
|
|
|
|
DefaultButton property in Panels. It sets default button for a particular panel. |
|||
|
|
It indicates whether current request is coming from Local Computer or not.
|
||||
|
|
|
MaintainScrollPositionOnPostback attribute in Page directive. It is used to maintain scroll position of aspx page across postbacks. |
|||
|
|
Check to see if the client is still connected, before starting a long-running task:
|
|||
|
|
|
|
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. |
||||||||
|
|
|
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. |
||