Archives
-
Response.Redirect into a new window (with Extension Methods)
This question comes up from time to time, to time. If you understand how redirects work, then you also know it is "not possible" to redirect into a new window, because a redirect on the server causes a special HTTP response to be sent to the users browser, the client. The browsers native implementation interprets the special response code and sends the user off to the destination. There's no built-in mechanism or standard for specifying a new window.
-
Rendering ASP.NET Controls out of place
Two posts back I discussed a technique you can use to render controls in an order other than how they are physically arranged in the control tree.
-
Inline Script inside an ASP.NET AJAX UpdatePanel
When you wrap content with an UpdatePanel, it pretty much takes care of everything for you. But it can't do absolutely everything...
-
Rendering ASP.NET Controls out of order
I receive a lot of comments and emails stemming from my series of articles on understanding the nuances of dealing with dynamic controls. It's interesting that so many of these requests revolve around very similar problems.
-
TRULY Understanding Dynamic Controls (Part 4)
Part 1: Dynamic vs. Static
Part 2: Creating Dynamic Controls
Part 3: Adding Dynamic Controls to the Control Tree
Part 4: Because you don't know what to render at design time