Other News

Community

Impersonation with ASP.NET 2.0

(Manish Dwivedi) Impersonation is the process of executing code in the context of another user identity. By default, all ASP.NET code is executed using a fixed machine-specific account. To execute code using another identity we can use the built-in impersonation capabilities of ASP.NET. We can use a

Community

An Introduction to XSLT

XSLT allows you to create formatting structures which interpret and modify the existing XML elements. Learn about the syntax of XSLT elements, how the namespace attribute differs depending on the browser in use, and how to transform original XML elements.

Community

Operations on XML Elements

To programmatically create a new element, you can declare an XmlElement variable. To add the new element to the file, the XmlDocument class provides the CreateElement() method that is overloaded with three versions. One of the versions uses the following syntax: public XmlElement CreateElement(st

Community

Measuring the Impact of View State

(John Robbins) Isn’t it funny how the Microsoft .NET Framework is thought of as an environment where you don’t have to think about memory? Of course, what’s one of the number one issues that continues to plague managed applications today? Memory! Why? When the garbage collector runs to reclaim memor